MDL-69036 theme_boost: consistent table row hovering for links.

When hovering over table rows with the `dimmed_text` class we
should consistently set the text/link colour.

Co-Authored-By: Mikel Martín <mikel@moodle.com>
This commit is contained in:
Paul Holden 2020-11-23 12:05:47 +00:00
parent 96b49ddc97
commit 3294431fd0
3 changed files with 9 additions and 0 deletions

View File

@ -33,6 +33,11 @@
@include hover {
color: $table-hover-color;
background-color: $table-hover-bg;
&.dimmed_text {
a:not(.menu-action) {
color: $table-hover-color;
}
}
}
}
}

View File

@ -18089,6 +18089,8 @@ div#dock {
.generaltable tbody tr:hover {
color: #212529;
background-color: rgba(0, 0, 0, 0.075); }
.generaltable tbody tr:hover.dimmed_text a:not(.menu-action) {
color: #212529; }
table caption {
font-size: 24px;

View File

@ -18321,6 +18321,8 @@ div#dock {
.generaltable tbody tr:hover {
color: #212529;
background-color: rgba(0, 0, 0, 0.075); }
.generaltable tbody tr:hover.dimmed_text a:not(.menu-action) {
color: #212529; }
table caption {
font-size: 24px;