| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- @import "./../common/abstracts/_mixin.scss";
- @import "./../common/abstracts/variable.scss";
- .wot-theme-dark {
- @include b(number-keyboard) {
- background: $-dark-background5;
- @include e(header){
- color: $-dark-color;
- }
- }
- }
- @include b(number-keyboard) {
- width: 100%;
- background: $-number-keyboard-background;
- color: $-color-black;
- user-select: none;
- @include m(with-title) {
- border-radius: 20px 20px 0 0;
- }
- @include e(header) {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- box-sizing: content-box;
- height: $-number-keyboard-title-height;
- padding-top: 6px;
- color: $-number-keyboard-title-color;
- font-size: $-number-keyboard-title-font-size;
- }
- @include e(title) {
- display: inline-block;
- font-weight: normal;
- &-left {
- position: absolute;
- left: 0;
- }
- }
- @include e(body) {
- display: flex;
- padding: 6px 0 0 6px;
- }
- @include e(keys) {
- display: flex;
- flex: 3;
- flex-wrap: wrap;
- }
- @include e(close) {
- position: absolute;
- display: flex;
- align-items: center;
- right: 0;
- height: 100%;
- padding: $-number-keyboard-close-padding;
- color: $-number-keyboard-close-color;
- font-size: $-number-keyboard-close-font-size;
- background-color: transparent;
- border: none;
- @include m(hover){
- opacity: 0.6;
- }
- }
- @include e(sidebar) {
- display: flex;
- flex: 1;
- flex-direction: column;
- }
- }
|