fixes #16651: table contrast issues new

This commit is contained in:
Andrew Gormley 2024-06-27 14:14:12 +01:00
parent 347336ba07
commit d319791a26
2 changed files with 14 additions and 2 deletions

Binary file not shown.

View File

@ -35,8 +35,13 @@ pre {
display: inline-block;;
}
table a {
table {
a {
color: $dark-teal;
}
th.orderable a {
color: var(--#{$prefix}body-color);
}
}
// Override background color alpha value
@ -86,5 +91,12 @@ body[data-bs-theme=dark] {
.btn {
color: var(--#{$prefix}body-color);
}
th.orderable a {
color: var(--#{$prefix}body-color);
}
}
.text-muted {
color: var(--#{$prefix}secondary-color) !important;
}
}