| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- @import '../common/abstracts/variable';
- @import '../common/abstracts/mixin';
- .wot-theme-dark {
- @include b(sort-button) {
- @include e(wrapper) {
- color: $-dark-color;
- }
- }
- }
- @include b(sort-button) {
- display: inline-block;
- height: $-sort-button-height;
- line-height: $-sort-button-height;
- @include m(line) {
- .wd-sort-button__left {
- &::after {
- position: absolute;
- content: '';
- width: 19px;
- height: 3px;
- bottom: 6px;
- left: 50%;
- transform: translate(-50%, 0);
- background: $-sort-button-line-color;
- border-radius: calc($-sort-button-line-height / 2);
- transition: opacity .15s;
- opacity: 0;
- }
- &.is-active::after {
- opacity: 1;
- }
- }
- }
- @include e(wrapper) {
- font-size: $-sort-button-fs;
- color: $-sort-button-color;
- word-break: break-all;
- white-space: nowrap;
- }
- @include e(left) {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- @include when(active) {
- font-weight: $-fw-medium;
- .wd-sort-button__right {
- justify-content: center;
- }
- }
- }
- @include e(right) {
- display: inline-block;
- min-width: 14px;
- margin-left: 2px;
- vertical-align: middle;
- line-height: 1.1;
- @include when(active) {
- :deep(.wd-sort-button__icon-up),
- :deep(.wd-sort-button__icon-down) {
- transform: scale(calc((10 / 14)));
- }
- }
- }
- @include edeep(icon-up) {
- display: block !important;
- line-height: 1.1;
- transform: scale(calc((10 / 14))) translate(0, 7px);
- }
- @include edeep(icon-down) {
- display: block !important;
- line-height: 1.1;
- transform: scale(calc((10 / 14))) translate(0, -7px);
- }
- }
|