liuyg
2021-07-02 25ce610f6ecca7325e7a743dc032c4a76559c63d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@import url("../common/domButtons/DomButtonGrayPlus.css");
@import url("../common/domButtons/DomButtonGrayMinus.css");
 
@import "variables.less";
@import "../common/ValuePicker.less";
 
.mblValuePicker {
    .default-vertical-margin;
}
 
.mblValuePickerSlot {
    border: 2px solid @win-foreground-color;
 
    &:first-child {
        margin-left: 0px !important;
    }
}
 
.mblValuePickerSlotInputArea {
    border-top: 2px solid @win-foreground-color;
    border-bottom: 2px solid @win-foreground-color;
}
 
.mblValuePickerSlotInput {
    color: @win-foreground-color;
}
 
.mblValuePickerSlotButton {
    color: @win-foreground-color;
    border-radius: 0px;
 
    & .mblValuePickerSlotIcon {
        width: 100%;
        height: 100%;
        top: 0px;
        display: -ms-flexbox;
        -ms-flex-pack: center;
        -ms-flex-align: center;
 
        &:active {
            background-color: @win-accent-color;
        }
    }
 
    & > div > div {
        position: relative;
        background-color: @win-foreground-color;
        left: 0px;
        top: 0px;
 
        & > div {
            background-color: @win-foreground-color;
        }
    }
}