
| Current Path : /var/www/html/atstandard001/styles/uikit/components/partials/component/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/atstandard001/styles/uikit/components/partials/component/_tables.sort.scss |
/**
* Table sort indicators.
============================================================================ */
.tablesort {
@include output-rhythm(height, $medium);
@include output-rhythm(width, $medium);
display: inline-block;
&--asc,
&--desc {
&:after {
font-family: $icon-font;
@include output-rhythm(height, $medium);
@include output-rhythm(width, $medium);
@include output-rhythm(padding, 0 3px);
// Nuke any silly image icons.
background-image: none;
// Wait for FontAwesome to load.
display: none;
.fa-loaded & {
display: inline-block;
}
}
}
&--asc {
&:after {
content: $table-sort-asc;
}
}
&--desc {
&:after {
content: $table-sort-desc;
}
}
}