* refactor: switch to yarn 3 * chore: add other os+cpu to yarn supported architectures * chore: add gitattributes * chore: add missing yarn native modules rebuild step * chore: replace npx with yarn in test_runner + update readme * chore: remove bootstrap-datepicker github dependency, use local instead
33 lines
719 B
SCSS
33 lines
719 B
SCSS
// Import bootstrap helpers
|
|
@import "bootstrap/scss/functions";
|
|
@import "bootstrap/scss/variables";
|
|
// @import "bootstrap/scss/mixins";
|
|
// @import "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
|
|
}
|