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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
@import "variables.less";
@import "../common/Tooltip.less";
 
.mblOpener {
    background-color: @win-dialog-color;
    width: calc(~"100% - @{default-padding-right} - @{default-padding-left}");
    height: calc(~'100% - 50px');
    border: none;
    top: 0px !important;
    left: 0 !important;
    margin: 0 !important;
    position: fixed;
    padding: 50px @default-padding-right 0 @default-padding-left;
    opacity: 1;
    -ms-touch-action: none;
 
    & .mblTooltipAnchor,
    & .mblOpenerUnderlay {
        display: none;
    }
 
    & .mblHeading {
        min-height: 50px;
        position: absolute;
        bottom: 0px;
        text-transform: uppercase;
        font-size: @win-font-size-normal;
        width: calc(~"100% - @{default-padding-right} - @{default-padding-left}");
        z-index:3;
 
        & .mblHeadingDivTitle {
            text-align: left;
            position: fixed;
            top: 0px;
            width: auto;
            padding-left: @default-padding-left;
        }
 
        & ~ .mblScrollableView {
            height: calc(~"100% - 60px") !important;
        }
 
        & .mblButton,
        & .mblToolBarButton {
            bottom: 10px;
            border: 2px solid @win-foreground-color;
            position: absolute;
            width: 100%;
            max-width: 45%;
            padding: 0px;
            &:nth-of-type(odd) {
                left: 0px;
            }
 
            &:nth-of-type(even) {
                left: auto !important;
                right: 0px;
            }
        }
 
    }
 
}
 
.mblOpener .dijitColorPalette {
    width: calc(~"100% - @{default-padding-right} - @{default-padding-left}");
    height: calc(~'100% - 50px');
 
    table {
        width: 100%;
        height: 100%;
        padding: 0px !important;
    }
 
    tbody {
        width: 100%;
 
        height: 100%;
        position: absolute;
    }
 
    tr {
        display: -ms-flexbox;
        -ms-flex: 1;
        -ms-flex-align: center;
    }
 
    td {
        -ms-flex:1;
        display: inline-block;
    }
 
    .dijitPaletteImg {
        border: none !important;
        padding: 2px !important;
    }
 
    .dijitColorPaletteSwatch {
        border-radius: 0px!important;
        border: 2px solid transparent;
    }
 
    .dijitPaletteCellSelected {
        .dijitPaletteImg {
            margin: 2px 0px !important;
        }
        .dijitColorPaletteSwatch {
            border: 2px solid @win-accent-color !important;
        }
    }
}
 
@media screen and (orientation: landscape) {
  .dijitColorPalette tbody {
      display: -ms-flexbox;
      -ms-flex-direction: column;
  }
 
}
 
.mblTooltip:not(.mblOpener) {
    &.mblTooltipAbove {
        & .mblSpinWheel {
            bottom: auto;
        }
    }
 
    &.mblTooltipBelow {
        & .mblSpinWheel {
            top: auto;
        }
    }
 
    &.mblTooltipBefore {
        & .mblSpinWheel {
            left: 0px;
        }
    }
 
    &.mblTooltipAfter {
        & .mblSpinWheel {
            left: auto;
            right: 0px;
        }
    }
}