datatracker/ietf/static/css/list.scss
2023-06-02 11:43:53 +03:00

29 lines
621 B
SCSS

// Import bootstrap helpers
@import "bootstrap/scss/functions";
@import "bootstrap/scss/variables";
@import "bootstrap/scss/variables-dark";
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
}