datatracker/ietf/static/css/list.scss
Lars Eggert cc723ce449 More fixes.
- Legacy-Id: 19899
2022-01-31 19:17:50 +00:00

30 lines
732 B
SCSS

// Import bootstrap helpers
@import "~/node_modules/bootstrap/scss/functions";
@import "~/node_modules/bootstrap/scss/variables";
// @import "~/node_modules/bootstrap/scss/mixins";
// @import "~/node_modules/bootstrap/scss/utilities";
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 {
white-space: nowrap;
font-family: 'bootstrap-icons';
content: '\f283'; // chevron-expand
float: right;
padding-right: .25em;
}
table .sort.asc:after {
content: '\f282'; // chevron-down
}
table .sort.desc:after {
content: '\f286'; // chevron-up
}