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.
63 lines
1.3 KiB
SCSS
63 lines
1.3 KiB
SCSS
@import "./../../common/abstracts/_mixin.scss";
|
|
@import "./../../common/abstracts/variable.scss";
|
|
|
|
.wot-theme-dark {
|
|
@include b(key) {}
|
|
}
|
|
|
|
.wd-key-wrapper {
|
|
position: relative;
|
|
flex: 1;
|
|
flex-basis: 33%;
|
|
box-sizing: border-box;
|
|
padding: 0 6px 6px 0;
|
|
|
|
@include m(wider){
|
|
flex-basis: 66%;
|
|
}
|
|
}
|
|
|
|
@include b(key) {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: $-number-keyboard-key-height;
|
|
font-size: $-number-keyboard-key-font-size;
|
|
line-height: 1.5;
|
|
background: $-number-keyboard-key-background;
|
|
border-radius: $-number-keyboard-key-border-radius;
|
|
&:active{
|
|
background-color: $-number-keyboard-key-active-color;
|
|
}
|
|
|
|
@include m(large) {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 6px;
|
|
bottom: 6px;
|
|
left: 0;
|
|
height: auto;
|
|
}
|
|
|
|
@include m(delete,close) {
|
|
font-size: $-number-keyboard-delete-font-size;
|
|
}
|
|
|
|
@include m(active) {
|
|
background-color: $-number-keyboard-key-active-color;
|
|
}
|
|
|
|
@include m(close) {
|
|
color: $-number-keyboard-button-text-color;
|
|
background: $-number-keyboard-button-background;
|
|
|
|
&:active{
|
|
background: $-number-keyboard-button-background;
|
|
opacity: $-number-keyboard-button-active-opacity;
|
|
}
|
|
}
|
|
|
|
@include edeep(loading-icon) {
|
|
color: $-number-keyboard-button-text-color;
|
|
}
|
|
} |