Skip to content

Commit

Permalink
Merge #16123 - Fix #16110 - Incorrect mouseover highlighting
Browse files Browse the repository at this point in the history
Pull-request: #16123
Fixes: #16110
[ci skip]

Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed May 15, 2020
2 parents eb238ff + 2fa2c85 commit 824a5b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions themes/bootstrap/scss/_common.scss
Expand Up @@ -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;
Expand Down
8 changes: 8 additions & 0 deletions themes/metro/scss/_common.scss
Expand Up @@ -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 {
Expand Down
1 change: 1 addition & 0 deletions themes/pmahomme/scss/_common.scss
Expand Up @@ -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;
Expand Down

0 comments on commit 824a5b2

Please sign in to comment.