nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import "variables.less";
@import "../common/SpinWheel.less";
 
@mbl-PickerItemHeight: 100px;
@mbl-PickerItemWidth: 100px;
 
.mblSpinWheel {
    background-image: none !important;
    border: none !important;
    margin: auto 0;
    height: 400px !important;
    width: auto !important;
    display: -ms-flexbox;
    color: @win-foreground-color;
 
    & .mblSpinWheelSlot {
        -ms-flex-preferred-size: auto;
        border: none;
        -ms-user-select: none;
        text-align: left !important;
        overflow: hidden;
        margin: 0px !important;
        width: @mbl-PickerItemWidth !important;
 
        &:empty {
            display: none !important;
        }
 
        &:not([widgetId]) {
            top: 150px;
            height: 94px !important;
            width: 86px !important;
            padding: 0 0 0 8px !important;
            margin-right: 6px !important;
            background-color: @win-inactive-color;
            line-height: 4.5;
        }
    }
 
    & .mblSpinWheelSlotContainer:not(.mblSelectedSlot) {
        & .mblSpinWheelSlotLabel:not(.mblSelectedSlotItem) {
          opacity: 0;
          -ms-transition: opacity 0.4s ease-out;
          &:before {
              opacity: 0;
              transition: opacity 0.4s ease-out;
          }
        }
    }
 
    & .mblSpinWheelSlotLabel:not(.mblSelectedSlotItem) {
        opacity: 1;
        -ms-transition: opacity 0.4s ease-out;
        &:before {
            opacity: 1;
            transition: opacity 0.4s ease-out;
        }
    }
 
    & .mblSpinWheelSlotLabel {
        border: none;
        margin: 0px;
        color: @win-disabled-color;
        height: @mbl-PickerItemHeight;
        line-height: 3.5;
        font-size: @win-font-size-extra-large;
 
        &.mblSelectedSlotItem {
            color: @win-foreground-color;
            &:before {
                background-color: @win-disabled-color;
                z-index: -1;
            }
        }
 
        &:before {
            content: '';
            position: absolute;
            width: 90px;
            height: 90px;
            border: 2px solid @win-disabled-color;
            left: 0px;
        }
 
        &.mblSpinWheelSlotLabelGray {
            opacity: 0.3;
 
            &:before{
                opacity: 0.3;
            }
        }
    }
 
    & .mblSpinWheelBar {
        display: none;
    }
 
    & .mblSpinWheelSlotTouch {
        background-color: @win-bg-color;
        opacity: 0.01;
    }
}
 
.mblTooltip.mblOpener  {
    & .mblSpinWheelDatePicker {
        left: calc(~"50% - 150px");
        position: absolute !important;
        top: 50%;
        bottom: 50%;
        width: 300px !important;
    }
}