Reduce width of multiselect column to prevent overflow

This commit is contained in:
Brian Federle 2013-12-16 16:12:43 -08:00
parent 719271b1d9
commit 5e552ec66b
1 changed files with 7 additions and 3 deletions

View File

@ -176,14 +176,18 @@ table tbody td.truncated > span {
/** Multiselect*/
table thead th.multiselect,
table tbody td.multiselect {
width: 40px;
min-width: 40px;
max-width: 40px;
width: 20px;
min-width: 20px;
max-width: 20px;
}
table thead th.multiselect input,
table tbody td.multiselect input {
margin: 0;
/*+placement:shift -8px 0px;*/
position: relative;
left: -8px;
top: 0px;
}
table thead th.multiselect input {