diff --git a/pixelegg/css/pixelegg.css b/pixelegg/css/pixelegg.css index 97ba141a10..c301c8d4e5 100644 --- a/pixelegg/css/pixelegg.css +++ b/pixelegg/css/pixelegg.css @@ -5813,7 +5813,6 @@ table.egwGridView_grid tbody tr.selected { table.egwGridView_grid tbody tr.focused { background-image: url(../images/yellow-stripe-a.png); background-repeat: repeat; - background-color: rgba(255, 194, 0, 0.2); } table.egwGridView_grid tbody td { padding: 3px 0 3px 3px; @@ -5875,7 +5874,7 @@ table.egwGridView_grid > tr > td span.low { color: #373737; } table.egwGridView_grid tr.subentry { - background: rgba(255, 221, 115, 0.2) !important; + background: rgba(255, 221, 115, 0.2); } table.egwGridView_grid tr.subentry:hover { background: #ffdd73 !important; diff --git a/pixelegg/less/layout_table.less b/pixelegg/less/layout_table.less index af4028c319..bbe5ae4987 100755 --- a/pixelegg/less/layout_table.less +++ b/pixelegg/less/layout_table.less @@ -228,7 +228,7 @@ table.egwGridView_grid{ tr.focused{ background-image: url(../images/yellow-stripe-a.png); background-repeat: repeat; - background-color: fade(@color_active_row, 20%); + //background-color: fade(@color_active_row, 20%); } @@ -322,7 +322,7 @@ table.egwGridView_grid{ /*subentry*/ tr.subentry { - background: fade(@color_selected_row, 20%) !important; + background: fade(@color_selected_row, 20%); &:hover {background: @color_selected_row !important;} }