mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 12:45:04 +01:00
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:
parent
96b49ddc97
commit
3294431fd0
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user