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.
116 lines
2.5 KiB
SCSS
116 lines
2.5 KiB
SCSS
@import "./../common/abstracts/_mixin.scss";
|
|
@import "./../common/abstracts/variable.scss";
|
|
|
|
.wot-theme-dark {
|
|
@include b(popover) {
|
|
|
|
@include e(pos) {
|
|
background: rgb(75, 76, 77);
|
|
color: $-dark-color;
|
|
box-shadow: 0px 2px 10px 0px rgba(75, 76, 77, 0.1);
|
|
}
|
|
|
|
@include e(menu) {
|
|
background: rgb(75, 76, 77);
|
|
}
|
|
|
|
@include e(inner) {
|
|
background-color: rgb(75, 76, 77);
|
|
}
|
|
|
|
@include e(menu-inner) {
|
|
|
|
@include halfPixelBorder("top", 0, $-dark-border-color);
|
|
}
|
|
|
|
@include squareArrow($-popover-arrow-size, rgb(75, 76, 77), $-popover-z-index - 1, $-popover-arrow-box-shadow);
|
|
|
|
}
|
|
}
|
|
|
|
@include b(popover) {
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
@include edeep(icon) {
|
|
vertical-align: middle;
|
|
font-size: 18px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
@include e(menu-inner) {
|
|
position: relative;
|
|
padding: $-popover-padding 0;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
@include halfPixelBorder("top", 0, $-popover-border-color);
|
|
|
|
&:first-child::after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@include e(menu) {
|
|
display: inline-block;
|
|
padding: 0 $-popover-padding;
|
|
white-space: nowrap;
|
|
z-index: $-popover-z-index;
|
|
position: relative;
|
|
background: $-popover-bg;
|
|
border-radius: $-popover-radius;
|
|
}
|
|
|
|
@include edeep(pos) {
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
background-clip: padding-box;
|
|
text-align: center;
|
|
min-height: 36px;
|
|
z-index: $-popover-z-index;
|
|
line-height: $-popover-line-height;
|
|
font-size: $-popover-fs;
|
|
border-radius: $-popover-radius;
|
|
transition: opacity 0.2s;
|
|
background: $-popover-bg;
|
|
box-shadow: $-popover-box-shadow;
|
|
color: $-popover-color;
|
|
}
|
|
|
|
// @include edeep(transition) {
|
|
// position: relative;
|
|
// z-index: $-popover-z-index;
|
|
// }
|
|
|
|
@include e(hidden) {
|
|
left: -100vw;
|
|
visibility: hidden;
|
|
}
|
|
|
|
@include e(container) {
|
|
position: relative;
|
|
line-height: $-tooltip-line-height;
|
|
font-size: $-tooltip-fs;
|
|
}
|
|
|
|
@include e(inner) {
|
|
position: relative;
|
|
white-space: nowrap;
|
|
padding: $-popover-padding;
|
|
line-height: $-popover-line-height;
|
|
z-index: $-popover-z-index;
|
|
background-color: $-popover-bg;
|
|
border-radius: $-popover-radius;
|
|
}
|
|
|
|
@include edeep(close-icon) {
|
|
font-size: 12px;
|
|
position: absolute;
|
|
right: -8px;
|
|
top: -10px;
|
|
transform: scale(0.5);
|
|
padding: 10px;
|
|
}
|
|
|
|
@include squareArrow($-popover-arrow-size, $-popover-bg, $-popover-z-index - 1, $-popover-arrow-box-shadow);
|
|
} |