Merge #16123 - Fix #16110 - Incorrect mouseover highlighting

Pull-request: #16123
Fixes: #16110
[ci skip]

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2020-05-15 23:12:25 +02:00
commit 824a5b277e
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
3 changed files with 10 additions and 0 deletions

View File

@ -570,6 +570,7 @@ table tbody:first-of-type tr:not(.nopointer):hover th,
// hovered table rows
#table_index tbody:hover tr,
#table_index tbody:hover th,
#table_index tbody:hover td,
table tr.hover:not(.nopointer) th {
background: linear-gradient(#ced6df, #b6c6d7);
color: $browse-pointer-color;

View File

@ -694,6 +694,14 @@ table tr.hover:not(.nopointer) th {
color: $th-pointer-color;
}
/* hovered index table rows */
#table_index tbody:hover tr,
#table_index tbody:hover th,
#table_index tbody:hover td {
background: $browse-marker-background;
color: $main-color;
}
/* marks table rows/cells if the db field is in a where condition */
.condition {

View File

@ -610,6 +610,7 @@ table tbody:first-of-type tr:not(.nopointer):hover th,
// hovered table rows
#table_index tbody:hover tr,
#table_index tbody:hover th,
#table_index tbody:hover td,
table tr.hover:not(.nopointer) th {
background: linear-gradient(#ced6df, #b6c6d7);
color: $browse-pointer-color;