32 lines
778 B
SCSS
32 lines
778 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';
|
|
font-size: larger;
|
|
color: $secondary;
|
|
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
|
|
} |