diff --git a/pixelegg/css/pixelegg.css b/pixelegg/css/pixelegg.css index c8846ee4d5..b364e8ade5 100644 --- a/pixelegg/css/pixelegg.css +++ b/pixelegg/css/pixelegg.css @@ -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; diff --git a/pixelegg/less/layout_table.less b/pixelegg/less/layout_table.less index 7f5ab8863a..af4028c319 100755 --- a/pixelegg/less/layout_table.less +++ b/pixelegg/less/layout_table.less @@ -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; + } }