datatracker/ietf/static/css/list.scss
Lars Eggert 0a4fc286cd
fix: More darkmode fixes (#6477)
* fix: More dark mode fixes

This first commit increases contrast of the leftmenu text.

* Fix own ballot position highlight in dark mode

* Fix dark mode axis color in timeline diagrams

* Enable highcharts dark mode

* Fix template

* Properly import our customized bs5 everywhere

* Fix #6499

* Use bs5 color for border-left

* Remove superfluous load
2023-10-23 18:38:35 -05:00

26 lines
508 B
SCSS

@import "custom-bs-import";
table .sort {
cursor: pointer;
}
table .sort:hover {
--#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-hover-bg);
color: var(--#{$variable-prefix}table-hover-color);
}
table .sort:after {
font-family: 'bootstrap-icons';
content: '\f283'; // chevron-expand
padding-left: .25em;
padding-right: .25em;
}
table .sort.asc:after {
content: '\f282'; // chevron-down
}
table .sort.desc:after {
content: '\f286'; // chevron-up
}