You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.2 KiB
SCSS

@import '../common/abstracts/variable';
@import '../common/abstracts/mixin';
.wot-theme-dark {
@include b(drop-item) {
color: $-dark-color;
@include e(tip) {
color: $-dark-color3;
}
}
}
@include b(drop-item) {
position: fixed;
right: 0;
left: 0;
overflow: hidden;
font-size: $-drop-menu-item-fs;
color: $-drop-menu-item-color;
width: 100%;
z-index: 101;
.wd-drop-item__popup {
position: absolute;
max-height: 80%;
}
@include e(option) {
display: flex;
height: $-drop-menu-item-height;
line-height: $-drop-menu-item-height;
padding: 0 $-drop-menu-side-padding;
justify-content: space-between;
align-items: center;
transition: color .2s;
@include when(active) {
color: $-drop-menu-item-color-active;
}
}
@include e(title){
display: block;
}
@include e(tip) {
display: inline-block;
color: $-drop-menu-item-color-tip;
font-size: $-drop-menu-item-fs-tip;
margin-left: 2px;
}
@include edeep(icon){
display: block;
font-size: $-drop-menu-option-check-size;
}
@include e(modal) {
position: fixed;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
height: 100%;
}
}