Fix hover and current datepicker color

We were using the wrong color since commit e2d540d20 because, by using
`@extend`, the compiled CSS had the styles for `.ui-state-hover` appear
before the styles for `.ui-state-default`.
This commit is contained in:
Javi Martín
2022-10-09 23:12:08 +02:00
parent 5d37220282
commit 9dfff1864a

View File

@@ -8,14 +8,14 @@
.ui-datepicker-calendar {
.ui-state-default {
background: $highlight;
color: $text;
}
.ui-state-hover,
.ui-state-active {
@extend %brand-background;
.ui-state-default:not(&) {
background: $highlight;
color: $text;
}
}
thead {