Make focused rows look different than selected so we can tell the difference

This commit is contained in:
Nathan Gray 2014-09-01 16:05:21 +00:00
parent ba88aae98b
commit dfd2271dbd
2 changed files with 3 additions and 4 deletions

View File

@ -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;

View File

@ -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;}
}