From ea4fa229f087382d4c41910a2747ed6ad54b7624 Mon Sep 17 00:00:00 2001 From: Stefan Reinhardt Date: Wed, 11 Jun 2014 14:02:57 +0000 Subject: [PATCH] Table - focused row: fade to 20% yellow --- pixelegg/css/pixelegg.css | 2 +- pixelegg/less/layout_table.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pixelegg/css/pixelegg.css b/pixelegg/css/pixelegg.css index a469a56ce4..cf088d4348 100644 --- a/pixelegg/css/pixelegg.css +++ b/pixelegg/css/pixelegg.css @@ -3614,7 +3614,7 @@ 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.5); + background-color: rgba(255, 194, 0, 0.2); } table.egwGridView_grid tbody td { padding: 3px 0 3px 3px; diff --git a/pixelegg/less/layout_table.less b/pixelegg/less/layout_table.less index 5cec4fe861..f81db3789d 100755 --- a/pixelegg/less/layout_table.less +++ b/pixelegg/less/layout_table.less @@ -224,7 +224,7 @@ table.egwGridView_grid{ tr.focused{ background-image: url(../images/yellow-stripe-a.png); background-repeat: repeat; - background-color: fade(@color_active_row, 50%); + background-color: fade(@color_active_row, 20%); }