right aligned columns need to be padded right, not left

This commit is contained in:
Ralf Becker 2014-08-20 12:33:14 +00:00
parent 759c76b70b
commit af3bfc0758
2 changed files with 7 additions and 0 deletions

View File

@ -5810,6 +5810,9 @@ table.egwGridView_grid tbody td table.customfields tbody tr td {
table.egwGridView_grid tbody td table.customfields tbody tr td .et2_textbox_ro {
/*white-space: inherit;*/
}
table.egwGridView_grid tbody td[align="right"] {
padding: 3px 5px 3px 0;
}
table.egwGridView_grid > tr {
border-bottom: 1px solid;
border-color: #828282;

View File

@ -268,6 +268,10 @@ table.egwGridView_grid{
}
// right aligned columns need to be padded right, not left
td[align="right"] {
padding: 3px 5px 3px 0;
}
}