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
.jimu-dnd-mobile-panel {
  width: 100%;
  height: 100%;
  position: relative;
}
.jimu-dnd-mobile-panel .map-area {
  position: relative;
}
.jimu-dnd-mobile-panel .widget-area {
  position: absolute;
}
.jimu-dnd-mobile-panel .widget-area .panel-header {
  position: absolute;
  top: 0;
  height: 25px;
  width: 100%;
}
.jimu-dnd-mobile-panel .widget-area .panel-header .label {
  font-size: 14px;
  margin: 0 auto;
  line-height: 20px;
  text-align: center;
}
.jimu-dnd-mobile-panel .widget-area .panel-header .previous-arrow {
  width: 16px;
  height: 16px;
  background: url(./images/chevron-left.svg) no-repeat center;
  background-size: 12px;
  cursor: pointer;
  margin: 2px 5px;
}
.jimu-rtl .jimu-dnd-mobile-panel .widget-area .panel-header .previous-arrow {
  background: url(./images/chevron-right.svg) no-repeat center;
}
.jimu-dnd-mobile-panel .widget-area .panel-header .previous-arrow.disabled {
  cursor: default;
  background-image: url(./images/chevron-left-disable.svg);
}
.jimu-rtl .jimu-dnd-mobile-panel .widget-area .panel-header .previous-arrow.disabled {
  background-image: url(./images/chevron-right-disable.svg);
}
.jimu-dnd-mobile-panel .widget-area .panel-header .next-arrow {
  width: 16px;
  height: 16px;
  background: url(./images/chevron-right.svg) no-repeat center;
  background-size: 12px;
  cursor: pointer;
  margin: 2px 5px;
}
.jimu-rtl .jimu-dnd-mobile-panel .widget-area .panel-header .next-arrow {
  background: url(./images/chevron-left.svg) no-repeat center;
}
.jimu-dnd-mobile-panel .widget-area .panel-header .next-arrow.disabled {
  cursor: default;
  background-image: url(./images/chevron-right-disable.svg);
}
.jimu-rtl .jimu-dnd-mobile-panel .widget-area .panel-header .next-arrow.disabled {
  background-image: url(./images/chevron-left-disable.svg);
}
.jimu-dnd-mobile-panel .widget-area .panel-footer {
  position: absolute;
  bottom: 0;
  height: 20px;
  width: 100%;
  background: transparent;
  z-index: 110;
  color: #FFF;
}
.jimu-dnd-mobile-panel .widget-area .panel-content {
  top: 25px;
  height: calc(100% - 25px);
  width: 100%;
  white-space: nowrap;
  position: absolute;
}
.jimu-dnd-mobile-panel .widget-area .dnd-mobile-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  top: 0;
  left: 0;
  white-space: normal;
}
.jimu-dnd-mobile-panel .widget-area .dnd-mobile-container .jimu-panel {
  height: 100%;
  width: 100%;
}
.jimu-dnd-mobile-panel .splitter {
  position: absolute;
  background-color: gray;
  cursor: pointer;
  z-index: 110;
}
.jimu-dnd-mobile-panel .splitter .splitter_handler {
  width: 16px;
  height: 16px;
  background: url(./images/moveup.svg) no-repeat center;
}
.jimu-dnd-mobile-panel.portrait .map-area {
  width: 100%;
  height: 60%;
}
.jimu-dnd-mobile-panel.portrait .splitter {
  height: 10px;
  width: 100%;
  top: 60%;
}
.jimu-dnd-mobile-panel.portrait .splitter .splitter_handler {
  margin: 0 auto;
}
.jimu-dnd-mobile-panel.portrait .widget-area {
  width: 100%;
  height: calc(40% - 10px);
  bottom: 0;
}
.jimu-dnd-mobile-panel.landscape .map-area {
  width: 70%;
  height: 100%;
  z-index: 110;
}
.jimu-dnd-mobile-panel.landscape .splitter {
  height: 100%;
  width: 16px;
  left: 70%;
  top: 0;
}
.jimu-dnd-mobile-panel.landscape .splitter .splitter_handler {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  transform: rotate(90deg);
}
.jimu-dnd-mobile-panel.landscape .widget-area {
  height: 100%;
  width: calc(30% - 10px);
  right: 0;
  top: 0;
}
 
/*# sourceMappingURL=style.css.map */