Layout of Edit View Line Items could be improved...
See screenshot below from demo.vtiger.com.
Several of my customers think this layout is not optimal (to be polite). They ask me to reduce the width of the Tools, Qty and Selling Price columns and make the text area in the Item Name column a sensible width. A couple of them ask me to increase the height of it too, to about 4 lines.
I find myself doing this more and more. here's what I use in CSS. Perhaps something could be done in a future release?
/* Fix silly sized Text area in Line Items */
table#lineItemTab textarea.lineItemCommentBox {
width:90%;
/* Line-height is 1.4 so this is an approximation of 4 lines high */
min-height: 5.6em;
}
/* Change width of columns in LineItems */
table#lineItemTab tbody tr>:nth-child(1) {
width:5%;
}
table#lineItemTab tbody tr>:nth-child(3),
table#lineItemTab tbody tr>:nth-child(4) {
width:10%;
}
The changes above make the same layout look like this instead.