@sapui5/sap.ui.vbm 1.145.0 → 1.146.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sap/ui/vbm/.library +1 -1
- package/src/sap/ui/vbm/Adapter.js +4 -4
- package/src/sap/ui/vbm/Adapter3D.js +1 -1
- package/src/sap/ui/vbm/Viewport.js +1 -1
- package/src/sap/ui/vbm/adapter3d/ColladaBounds.js +1 -1
- package/src/sap/ui/vbm/adapter3d/DragDropHandler.js +1 -1
- package/src/sap/ui/vbm/adapter3d/ModelHandler.js +1 -1
- package/src/sap/ui/vbm/adapter3d/ObjectFactory.js +1 -1
- package/src/sap/ui/vbm/adapter3d/PolygonHandler.js +1 -1
- package/src/sap/ui/vbm/adapter3d/RectangleTracker.js +1 -1
- package/src/sap/ui/vbm/adapter3d/SceneBuilder.js +1 -1
- package/src/sap/ui/vbm/adapter3d/VBIJSONParser.js +1 -1
- package/src/sap/ui/vbm/library.js +2 -2
- package/src/sap/ui/vbm/themes/base/AnalyticMap.less +5 -5
- package/src/sap/ui/vbm/themes/base/Cluster.less +41 -48
- package/src/sap/ui/vbm/themes/base/ContainerBase.less +14 -14
- package/src/sap/ui/vbm/themes/base/ContainerLegendItem.less +12 -27
- package/src/sap/ui/vbm/themes/base/DetailWindow.less +12 -8
- package/src/sap/ui/vbm/themes/base/ListPanel.less +17 -18
- package/src/sap/ui/vbm/themes/base/ListPanelStack.less +9 -10
- package/src/sap/ui/vbm/themes/base/MapContainer.less +49 -41
- package/src/sap/ui/vbm/themes/base/VBI.less +356 -491
- package/src/sap/ui/vbm/themes/base/Viewport.less +5 -1
- package/src/sap/ui/vbm/themes/base/library.source.less +1 -2
- package/src/sap/ui/vbm/themes/sap_fiori_3_dark/VBI.less +46 -55
- package/src/sap/ui/vbm/themes/sap_fiori_3_dark/library.source.less +1 -2
- package/src/sap/ui/vbm/themes/sap_fiori_3_hcb/VBI.less +46 -55
- package/src/sap/ui/vbm/themes/sap_fiori_3_hcb/library.source.less +1 -2
- package/src/sap/ui/vbm/themes/sap_horizon_dark/VBI.less +45 -54
- package/src/sap/ui/vbm/themes/sap_horizon_dark/library.source.less +1 -2
- package/src/sap/ui/vbm/themes/sap_horizon_hcb/VBI.less +45 -54
- package/src/sap/ui/vbm/themes/sap_horizon_hcb/library.source.less +1 -3
- package/src/sap/ui/vbm/themes/sap_horizon_hcw/VBI.less +45 -54
- package/src/sap/ui/vbm/themes/sap_horizon_hcw/library.source.less +1 -2
- package/src/sap/ui/vbm/vector/MapRenderer.js +497 -416
- package/src/sap/ui/vbm/vector/PayloadGenerator.js +1 -1
- package/src/sap/ui/vbm/vector/RectangularSelection.js +1 -1
- package/src/sap/ui/vbm/vector/VBITransformer.js +19 -4
- package/src/sap/ui/vbm/themes/base/GeoMap.less +0 -8
- package/src/sap/ui/vbm/themes/sap_fiori_3_dark/AnalyticMap.less +0 -4
- package/src/sap/ui/vbm/themes/sap_fiori_3_hcb/AnalyticMap.less +0 -4
- package/src/sap/ui/vbm/themes/sap_horizon_dark/AnalyticMap.less +0 -3
- package/src/sap/ui/vbm/themes/sap_horizon_hcb/AnalyticMap.less +0 -3
- package/src/sap/ui/vbm/themes/sap_horizon_hcw/AnalyticMap.less +0 -3
|
@@ -1,22 +1,16 @@
|
|
|
1
|
+
/* =============================== */
|
|
2
|
+
/* CSS for control sap.ui.vbm/VBI */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* =============================== */
|
|
1
5
|
|
|
2
|
-
|
|
3
|
-
/* LESS for control sap.ui.vbm/VBI.control...................................*/
|
|
4
|
-
/*...........................................................................*/
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
/* main vbi container style..................................................*/
|
|
6
|
+
/* main vbi container style */
|
|
8
7
|
.vbi-main {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
box-sizing: border-box; */
|
|
16
|
-
-webkit-user-select: none;
|
|
17
|
-
-moz-user-select: none;
|
|
18
|
-
-ms-user-select: none;
|
|
19
|
-
user-select: none;
|
|
8
|
+
border: none;
|
|
9
|
+
/* change box model to enable relative sizing with fixed border */
|
|
10
|
+
/* not needed without border
|
|
11
|
+
box-sizing: border-box; */
|
|
12
|
+
-webkit-user-select: none;
|
|
13
|
+
user-select: none;
|
|
20
14
|
}
|
|
21
15
|
|
|
22
16
|
.vbi-hidden {
|
|
@@ -30,21 +24,9 @@
|
|
|
30
24
|
overflow: hidden;
|
|
31
25
|
}
|
|
32
26
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.vbi-map-layer {
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.vbi-structure-layer {
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/* geoscene canvas style.....................................................*/
|
|
27
|
+
/* geoscene canvas style */
|
|
45
28
|
.vbi-geoscenecanvas {
|
|
46
|
-
|
|
47
|
-
touch-action: none;
|
|
29
|
+
touch-action: none;
|
|
48
30
|
}
|
|
49
31
|
.vbi-map-active {
|
|
50
32
|
opacity: 1;
|
|
@@ -54,11 +36,10 @@
|
|
|
54
36
|
opacity: 0;
|
|
55
37
|
}
|
|
56
38
|
|
|
57
|
-
/* container vo style
|
|
39
|
+
/* container vo style */
|
|
58
40
|
.vbi-container-vo {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
pointer-events: auto; /* explicitly set to make sure element receives events */
|
|
41
|
+
touch-action: none;
|
|
42
|
+
pointer-events: auto; /* explicitly set to make sure element receives events */
|
|
62
43
|
}
|
|
63
44
|
|
|
64
45
|
|
|
@@ -72,7 +53,7 @@
|
|
|
72
53
|
left: 10px;
|
|
73
54
|
}
|
|
74
55
|
|
|
75
|
-
.vbi-nav * {
|
|
56
|
+
.vbi-nav * {
|
|
76
57
|
background-image: url('img/sapvisualbusiness.png');
|
|
77
58
|
position: absolute;
|
|
78
59
|
}
|
|
@@ -82,27 +63,32 @@
|
|
|
82
63
|
.vbi-cursor-top,
|
|
83
64
|
.vbi-cursor-right,
|
|
84
65
|
.vbi-cursor-down,
|
|
85
|
-
.vbi-scrollpoint{
|
|
66
|
+
.vbi-scrollpoint {
|
|
67
|
+
cursor: pointer;
|
|
68
|
+
}
|
|
86
69
|
|
|
87
|
-
.vbi-cursor{
|
|
70
|
+
.vbi-cursor {
|
|
88
71
|
position: absolute;
|
|
89
72
|
width: 72px;
|
|
90
73
|
height: 72px;
|
|
91
74
|
background-position: -5px 305px;
|
|
92
75
|
}
|
|
93
|
-
|
|
76
|
+
|
|
77
|
+
.vbi-cursor:hover {
|
|
78
|
+
background-position: -5px 228px;
|
|
79
|
+
}
|
|
94
80
|
|
|
95
81
|
|
|
96
|
-
.vbi-cursor-grip{
|
|
82
|
+
.vbi-cursor-grip {
|
|
97
83
|
position: absolute;
|
|
98
|
-
top:
|
|
99
|
-
left:
|
|
84
|
+
top: 0;
|
|
85
|
+
left: 0;
|
|
100
86
|
width: 72px;
|
|
101
87
|
height: 72px;
|
|
102
88
|
background-position: -82px 305px;
|
|
103
89
|
}
|
|
104
90
|
|
|
105
|
-
.vbi-cursor-middle{
|
|
91
|
+
.vbi-cursor-middle {
|
|
106
92
|
position: absolute;
|
|
107
93
|
top: 7px;
|
|
108
94
|
left: 7px;
|
|
@@ -112,25 +98,26 @@
|
|
|
112
98
|
display: block;
|
|
113
99
|
}
|
|
114
100
|
|
|
115
|
-
.vbi-cursor-middle .vbi-cursor-reset{
|
|
101
|
+
.vbi-cursor-middle .vbi-cursor-reset {
|
|
116
102
|
position: absolute;
|
|
117
103
|
width: 16px;
|
|
118
104
|
height: 16px;
|
|
119
|
-
background-position: -222px 305px;
|
|
105
|
+
background-position: -222px 305px;
|
|
120
106
|
left: 21px;
|
|
121
107
|
top: 21px;
|
|
122
108
|
display: block;
|
|
123
109
|
}
|
|
124
110
|
|
|
125
|
-
html[
|
|
111
|
+
html[dir='rtl'] .vbi-cursor-middle .vbi-cursor-reset {
|
|
126
112
|
left: auto;
|
|
127
113
|
right: 21px;
|
|
128
114
|
}
|
|
129
115
|
|
|
116
|
+
.vbi-cursor-middle .vbi-cursor-reset:hover {
|
|
117
|
+
background-position: -222px 284px;
|
|
118
|
+
}
|
|
130
119
|
|
|
131
|
-
.vbi-cursor-middle .vbi-cursor-
|
|
132
|
-
|
|
133
|
-
.vbi-cursor-middle .vbi-cursor-left{
|
|
120
|
+
.vbi-cursor-middle .vbi-cursor-left {
|
|
134
121
|
position: absolute;
|
|
135
122
|
width: 13px;
|
|
136
123
|
height: 12px;
|
|
@@ -139,44 +126,47 @@ html[ dir=rtl ] .vbi-cursor-middle .vbi-cursor-reset{
|
|
|
139
126
|
background-position: -134px 228px;
|
|
140
127
|
}
|
|
141
128
|
|
|
142
|
-
|
|
143
|
-
html[ dir=rtl ] .vbi-cursor-middle .vbi-cursor-left {
|
|
129
|
+
html[dir='rtl'] .vbi-cursor-middle .vbi-cursor-left {
|
|
144
130
|
left: auto;
|
|
145
131
|
right: 8px;
|
|
146
132
|
}
|
|
147
133
|
|
|
134
|
+
.vbi-cursor-middle .vbi-cursor-left:hover {
|
|
135
|
+
background-position: -134px 211px;
|
|
136
|
+
}
|
|
148
137
|
|
|
149
|
-
.vbi-cursor-middle .vbi-cursor-
|
|
150
|
-
|
|
151
|
-
.vbi-cursor-middle .vbi-cursor-top{
|
|
138
|
+
.vbi-cursor-middle .vbi-cursor-top {
|
|
152
139
|
position: absolute;
|
|
153
140
|
width: 12px;
|
|
154
141
|
height: 13px;
|
|
155
142
|
top: 8px;
|
|
156
143
|
left: 23px;
|
|
157
|
-
background-position: -82px 228px;
|
|
144
|
+
background-position: -82px 228px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.vbi-cursor-middle .vbi-cursor-top:hover {
|
|
148
|
+
background-position: -82px 210px;
|
|
158
149
|
}
|
|
159
|
-
.vbi-cursor-middle .vbi-cursor-top:hover{background-position: -82px 210px;}
|
|
160
150
|
|
|
161
|
-
.vbi-cursor-middle .vbi-cursor-right{
|
|
151
|
+
.vbi-cursor-middle .vbi-cursor-right {
|
|
162
152
|
position: absolute;
|
|
163
153
|
width: 13px;
|
|
164
154
|
height: 12px;
|
|
165
155
|
top: 23px;
|
|
166
|
-
right:8px;
|
|
156
|
+
right: 8px;
|
|
167
157
|
background-position: -116px 228px;
|
|
168
158
|
}
|
|
169
159
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
right:auto;
|
|
160
|
+
html[dir='rtl'] .vbi-cursor-middle .vbi-cursor-right {
|
|
161
|
+
right: auto;
|
|
173
162
|
left: 8px;
|
|
174
163
|
}
|
|
175
164
|
|
|
165
|
+
.vbi-cursor-middle .vbi-cursor-right:hover {
|
|
166
|
+
background-position: -116px 211px;
|
|
167
|
+
}
|
|
176
168
|
|
|
177
|
-
.vbi-cursor-middle .vbi-cursor-
|
|
178
|
-
|
|
179
|
-
.vbi-cursor-middle .vbi-cursor-down{
|
|
169
|
+
.vbi-cursor-middle .vbi-cursor-down {
|
|
180
170
|
position: absolute;
|
|
181
171
|
width: 12px;
|
|
182
172
|
height: 13px;
|
|
@@ -184,9 +174,12 @@ html[ dir=rtl ] .vbi-cursor-middle .vbi-cursor-right {
|
|
|
184
174
|
left: 23px;
|
|
185
175
|
background-position: -99px 228px;
|
|
186
176
|
}
|
|
187
|
-
.vbi-cursor-middle .vbi-cursor-down:hover{background-position: -99px 210px;}
|
|
188
177
|
|
|
189
|
-
.vbi-
|
|
178
|
+
.vbi-cursor-middle .vbi-cursor-down:hover {
|
|
179
|
+
background-position: -99px 210px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.vbi-scrollarea {
|
|
190
183
|
position: absolute;
|
|
191
184
|
top: 84px;
|
|
192
185
|
left: 27px;
|
|
@@ -196,26 +189,26 @@ html[ dir=rtl ] .vbi-cursor-middle .vbi-cursor-right {
|
|
|
196
189
|
display: block;
|
|
197
190
|
}
|
|
198
191
|
|
|
199
|
-
.vbi-scrolllineupperending{
|
|
192
|
+
.vbi-scrolllineupperending {
|
|
200
193
|
position: absolute;
|
|
201
194
|
width: 10px;
|
|
202
195
|
height: 4px;
|
|
203
196
|
left: 4px;
|
|
204
|
-
top:
|
|
197
|
+
top: 0;
|
|
205
198
|
background-position: -243px 305px;
|
|
206
199
|
}
|
|
207
200
|
|
|
208
|
-
.vbi-scrollline{
|
|
201
|
+
.vbi-scrollline {
|
|
209
202
|
position: absolute;
|
|
210
203
|
width: 10px;
|
|
211
204
|
height: 85px;
|
|
212
205
|
top: 4px;
|
|
213
206
|
left: 4px;
|
|
214
207
|
background-image: url('img/scrollline.png');
|
|
215
|
-
background-repeat: repeat-y;
|
|
208
|
+
background-repeat: repeat-y;
|
|
216
209
|
}
|
|
217
210
|
|
|
218
|
-
.vbi-scrolllinelowerending{
|
|
211
|
+
.vbi-scrolllinelowerending {
|
|
219
212
|
position: absolute;
|
|
220
213
|
width: 10px;
|
|
221
214
|
height: 5px;
|
|
@@ -224,44 +217,46 @@ html[ dir=rtl ] .vbi-cursor-middle .vbi-cursor-right {
|
|
|
224
217
|
background-position: -243px 290px;
|
|
225
218
|
}
|
|
226
219
|
|
|
227
|
-
.vbi-scrollpoint{
|
|
220
|
+
.vbi-scrollpoint {
|
|
228
221
|
position: absolute;
|
|
229
222
|
width: 18px;
|
|
230
223
|
height: 18px;
|
|
231
|
-
left:
|
|
224
|
+
left: 0;
|
|
232
225
|
background-position: -235px 242px;
|
|
233
|
-
top:
|
|
226
|
+
top: 0;
|
|
234
227
|
}
|
|
235
|
-
.vbi-scrollpoint:hover{background-position: -235px 219px;}
|
|
236
228
|
|
|
229
|
+
.vbi-scrollpoint:hover {
|
|
230
|
+
background-position: -235px 219px;
|
|
231
|
+
}
|
|
237
232
|
|
|
238
233
|
.vbi-navmobile-home,
|
|
239
234
|
.vbi-navmobile-zoomin,
|
|
240
|
-
.vbi-navmobile-zoomout
|
|
241
|
-
{
|
|
235
|
+
.vbi-navmobile-zoomout {
|
|
242
236
|
line-height: 32px;
|
|
243
237
|
color: rgba( 0, 0, 0, 0.5 );
|
|
244
238
|
background-color: rgba(255, 255, 255, 0.5);
|
|
245
|
-
padding:
|
|
239
|
+
padding: 0 0;
|
|
246
240
|
background-image: none;
|
|
247
241
|
position: absolute;
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
242
|
+
width: 32px;
|
|
243
|
+
height: 32px;
|
|
244
|
+
font-size: 28px;
|
|
251
245
|
border: 1px solid rgba(120, 120, 120, 1.0);
|
|
252
|
-
background-clip:content-box;
|
|
246
|
+
background-clip: content-box;
|
|
253
247
|
text-align: center;
|
|
254
248
|
}
|
|
255
249
|
|
|
256
|
-
.vbi-navmobile-home{
|
|
257
|
-
font-family:
|
|
258
|
-
|
|
250
|
+
.vbi-navmobile-home {
|
|
251
|
+
font-family: var(--sapContent_IconFontFamily);
|
|
252
|
+
font-size: 22px;
|
|
259
253
|
}
|
|
260
254
|
|
|
261
|
-
.vbi-navmobile-zoomin{
|
|
255
|
+
.vbi-navmobile-zoomin {
|
|
262
256
|
top: 40px;
|
|
263
257
|
}
|
|
264
|
-
|
|
258
|
+
|
|
259
|
+
.vbi-navmobile-zoomout {
|
|
265
260
|
top: 80px;
|
|
266
261
|
}
|
|
267
262
|
|
|
@@ -277,249 +272,212 @@ html[ dir=rtl ] .vbi-cursor-middle .vbi-cursor-right {
|
|
|
277
272
|
@_sap_ui_vbm_VBI_DetailBG: rgba(255, 255, 255, 0.9);
|
|
278
273
|
|
|
279
274
|
.vbi-detail {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
-webkit-user-select: initial;
|
|
289
|
-
-moz-user-select: text;
|
|
290
|
-
-ms-user-select: initial;
|
|
291
|
-
user-select: initial;
|
|
292
|
-
|
|
275
|
+
box-sizing: border-box;
|
|
276
|
+
position: absolute;
|
|
277
|
+
margin: 0;
|
|
278
|
+
padding:0.9375rem;
|
|
279
|
+
background-color: @_sap_ui_vbm_VBI_DetailBG;
|
|
280
|
+
box-shadow: 0 0 1.875rem 0.125rem rgba(0, 0, 0, 0.15); /* to get a shadow around the box */
|
|
281
|
+
-webkit-user-select: initial;
|
|
282
|
+
user-select: initial;
|
|
293
283
|
}
|
|
294
284
|
|
|
295
285
|
|
|
296
286
|
.vbi-detail > .vbi-detail-arrow {
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
_border-right-color: pink;
|
|
315
|
-
_border-left-color: pink;
|
|
316
|
-
_filter: chroma(color=pink);
|
|
287
|
+
position: absolute;
|
|
288
|
+
left: 1.563rem; /* shift arrow to the left*/
|
|
289
|
+
margin: 0;
|
|
290
|
+
border-top: 0;
|
|
291
|
+
/* all borders are first transparent */
|
|
292
|
+
/* the correction is done in the specialization */
|
|
293
|
+
border-left: 0.5rem solid transparent;
|
|
294
|
+
border-top: 0.5rem solid transparent;
|
|
295
|
+
border-right: 0.5rem solid transparent;
|
|
296
|
+
border-bottom: 0.5rem solid transparent;
|
|
297
|
+
|
|
298
|
+
/* there is no padding */
|
|
299
|
+
padding: 0;
|
|
300
|
+
width: 0;
|
|
301
|
+
height: 0;
|
|
302
|
+
font-size: 0;
|
|
303
|
+
line-height: 0;
|
|
317
304
|
}
|
|
318
305
|
|
|
319
306
|
/*...........................................................................*/
|
|
320
307
|
/* left side arrow...........................................................*/
|
|
321
308
|
|
|
322
|
-
.vbi-detail > .vbi-detail-arrow.vbi-detail-left
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
border-right: 0.5rem solid;
|
|
330
|
-
border-right-color: @_sap_ui_vbm_VBI_DetailBG;
|
|
331
|
-
|
|
309
|
+
.vbi-detail > .vbi-detail-arrow.vbi-detail-left {
|
|
310
|
+
left: -0.5rem;
|
|
311
|
+
top: 0.9375rem;
|
|
312
|
+
/* only right border is used all others are transparent */
|
|
313
|
+
border-left: 0 solid transparent;
|
|
314
|
+
border-right: 0.5rem solid;
|
|
315
|
+
border-right-color: @_sap_ui_vbm_VBI_DetailBG;
|
|
332
316
|
}
|
|
333
317
|
|
|
334
318
|
/* borders for arrow.........................................................*/
|
|
335
|
-
.vbi-detail-border .vbi-detail-arrow.vbi-detail-left.vbi-detail-border-arrow
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
border-right-color: #a6b5d1;
|
|
343
|
-
|
|
319
|
+
.vbi-detail-border .vbi-detail-arrow.vbi-detail-left.vbi-detail-border-arrow {
|
|
320
|
+
position: absolute;
|
|
321
|
+
top: 0.9375rem;
|
|
322
|
+
left: -0.563rem;
|
|
323
|
+
border-left: 0 solid transparent;
|
|
324
|
+
border-right: 0.5rem solid;
|
|
325
|
+
border-right-color: #a6b5d1;
|
|
344
326
|
}
|
|
345
327
|
|
|
346
328
|
/* border for detail div.....................................................*/
|
|
347
|
-
.vbi-detail-border
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.vbi-detail > .vbi-detail-header
|
|
353
|
-
{
|
|
354
|
-
/* font definition of the callout header..................................*/
|
|
355
|
-
font-size: @sapUiFontHeader4Size;
|
|
356
|
-
font-family: @sapUiFontFamily;
|
|
357
|
-
font-weight: bold;
|
|
358
|
-
color: @sapUiText;
|
|
359
|
-
overflow: hidden;
|
|
360
|
-
vertical-align: top;
|
|
361
|
-
/*text-overflow: ellipsis;*/
|
|
362
|
-
white-space: nowrap;
|
|
363
|
-
left: 0rem;
|
|
364
|
-
top: 0rem;
|
|
365
|
-
padding: 0;
|
|
366
|
-
margin: 0;
|
|
367
|
-
border-width:0;
|
|
368
|
-
line-height:normal;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
.vbi-detail-closebutton
|
|
373
|
-
{
|
|
374
|
-
font-family: "SAP-icons", Arial, Helvetica, sans-serif;
|
|
375
|
-
font-size:0.750rem;
|
|
376
|
-
text-align: center;
|
|
377
|
-
position: absolute;
|
|
378
|
-
margin: 0;
|
|
379
|
-
padding: 0;
|
|
380
|
-
margin: 0;
|
|
381
|
-
border-width: 0;
|
|
382
|
-
background-color: rgba(255, 255, 255, 0.0);
|
|
383
|
-
-moz-box-sizing: border-box;
|
|
384
|
-
box-sizing: border-box;
|
|
385
|
-
cursor: pointer;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
.vbi-detail-closebutton-desktop
|
|
389
|
-
{
|
|
390
|
-
border-top: 0.063rem solid transparent;
|
|
391
|
-
right: 0.3125rem;
|
|
392
|
-
top: 0.3125rem;
|
|
393
|
-
height: 1.375rem;
|
|
394
|
-
width: 1.375rem;
|
|
395
|
-
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
.vbi-detail-closebutton-tablet
|
|
399
|
-
{
|
|
400
|
-
border-top: 0.125rem solid transparent;
|
|
401
|
-
right: 0.0rem;
|
|
402
|
-
top: 0.0rem;
|
|
403
|
-
height: 2rem;
|
|
404
|
-
width: 2rem;
|
|
329
|
+
.vbi-detail-border {
|
|
330
|
+
border: 0.0625rem #a6b5d1 solid; /* color border */
|
|
331
|
+
}
|
|
405
332
|
|
|
333
|
+
.vbi-detail > .vbi-detail-header {
|
|
334
|
+
/* font definition of the callout header */
|
|
335
|
+
font-size: @sapUiFontHeader4Size;
|
|
336
|
+
font-family: var(--sapFontFamily);
|
|
337
|
+
font-weight: bold;
|
|
338
|
+
color: @sapUiText;
|
|
339
|
+
overflow: hidden;
|
|
340
|
+
vertical-align: top;
|
|
341
|
+
white-space: nowrap;
|
|
342
|
+
left: 0;
|
|
343
|
+
top: 0;
|
|
344
|
+
padding: 0;
|
|
345
|
+
margin: 0;
|
|
346
|
+
border-width: 0;
|
|
347
|
+
line-height: normal;
|
|
406
348
|
}
|
|
407
349
|
|
|
408
|
-
@_sap_ui_vbm_VBI_DetailCloseHoverBG: rgba(128, 150, 189, 1.0);
|
|
409
350
|
|
|
410
|
-
.vbi-detail-closebutton
|
|
411
|
-
|
|
351
|
+
.vbi-detail-closebutton {
|
|
352
|
+
font-family: var(--sapContent_IconFontFamily);
|
|
353
|
+
font-size: 0.750rem;
|
|
354
|
+
text-align: center;
|
|
355
|
+
position: absolute;
|
|
356
|
+
margin: 0;
|
|
357
|
+
padding: 0;
|
|
358
|
+
margin: 0;
|
|
359
|
+
border-width: 0;
|
|
360
|
+
background-color: rgba(255, 255, 255, 0.0);
|
|
361
|
+
box-sizing: border-box;
|
|
362
|
+
cursor: pointer;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.vbi-detail-closebutton-desktop {
|
|
366
|
+
border-top: 0.063rem solid transparent;
|
|
367
|
+
right: 0.3125rem;
|
|
368
|
+
top: 0.3125rem;
|
|
369
|
+
height: 1.375rem;
|
|
370
|
+
width: 1.375rem;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.vbi-detail-closebutton-tablet {
|
|
374
|
+
border-top: 0.125rem solid transparent;
|
|
375
|
+
right: 0;
|
|
376
|
+
top: 0;
|
|
377
|
+
height: 2rem;
|
|
378
|
+
width: 2rem;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
@_sap_ui_vbm_VBI_DetailCloseHoverBG: rgba(128, 150, 189, 1.0);
|
|
382
|
+
|
|
383
|
+
.vbi-detail-closebutton:hover {
|
|
412
384
|
background-color: @_sap_ui_vbm_VBI_DetailCloseHoverBG;
|
|
413
385
|
}
|
|
414
|
-
|
|
415
|
-
{
|
|
386
|
+
|
|
387
|
+
.vbi-detail-closebutton:active {
|
|
416
388
|
background-color: @_sap_ui_vbm_VBI_DetailCloseHoverBG;
|
|
417
389
|
}
|
|
418
390
|
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
content: "\e03e";
|
|
391
|
+
.vbi-detail-closebutton::before {
|
|
392
|
+
content: '\e03e';
|
|
422
393
|
color: rgba(107, 125, 151, 1.0);
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
{
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.vbi-detail-closebutton-desktop::before {
|
|
426
397
|
vertical-align: -25%;
|
|
427
398
|
}
|
|
428
399
|
|
|
429
|
-
|
|
430
|
-
{
|
|
400
|
+
.vbi-detail-closebutton-tablet::before {
|
|
431
401
|
vertical-align: -50%;
|
|
432
402
|
}
|
|
433
|
-
|
|
434
403
|
|
|
435
|
-
.vbi-detail-closebutton:hover::before
|
|
436
|
-
{
|
|
404
|
+
.vbi-detail-closebutton:hover::before {
|
|
437
405
|
color: #ffffff;
|
|
438
406
|
}
|
|
439
407
|
|
|
440
|
-
.vbi-detail-closebutton:active::before
|
|
441
|
-
{
|
|
408
|
+
.vbi-detail-closebutton:active::before {
|
|
442
409
|
color: #ffffff;
|
|
443
410
|
}
|
|
444
411
|
|
|
445
|
-
.vbi-detail .vbi-detail-title
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
padding: 0rem;
|
|
467
|
-
border: 0rem;
|
|
468
|
-
background-color: @_sap_ui_vbm_VBI_DetailBG;
|
|
469
|
-
box-sizing: border-box;
|
|
470
|
-
-moz-box-sizing: border-box;
|
|
412
|
+
.vbi-detail .vbi-detail-title {
|
|
413
|
+
display: inline-block;
|
|
414
|
+
text-align: center;
|
|
415
|
+
top: 0;
|
|
416
|
+
left: 0;
|
|
417
|
+
margin: 0;
|
|
418
|
+
padding: 0 1rem 1rem 0;
|
|
419
|
+
border-width: 0;
|
|
420
|
+
width: 100%;
|
|
421
|
+
box-sizing: border-box;
|
|
422
|
+
overflow: hidden;
|
|
423
|
+
text-overflow: ellipsis;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.vbi-detail-content {
|
|
427
|
+
position: relative;
|
|
428
|
+
margin: 0;
|
|
429
|
+
padding: 0;
|
|
430
|
+
border: 0;
|
|
431
|
+
background-color: @_sap_ui_vbm_VBI_DetailBG;
|
|
432
|
+
box-sizing: border-box;
|
|
471
433
|
}
|
|
472
434
|
|
|
473
435
|
/* Styles for phone */
|
|
474
436
|
|
|
475
|
-
.vbi-detail-phone
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
margin: 0;
|
|
481
|
-
background-color: @_sap_ui_vbm_VBI_DetailBG;
|
|
437
|
+
.vbi-detail-phone {
|
|
438
|
+
box-sizing: border-box;
|
|
439
|
+
position: absolute;
|
|
440
|
+
margin: 0;
|
|
441
|
+
background-color: @_sap_ui_vbm_VBI_DetailBG;
|
|
482
442
|
width: 100%;
|
|
483
443
|
min-height: 3.5 rem;
|
|
484
444
|
padding-bottom: 0.75rem;
|
|
485
445
|
padding-right: 2rem;
|
|
486
446
|
padding-left: 1rem;
|
|
487
447
|
padding-top: 0.75rem;
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
.vbi-detail-header-phone
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
overflow: hidden;
|
|
522
|
-
text-overflow: ellipsis;
|
|
448
|
+
border-top: 0.0625rem #a6b5d1 solid;
|
|
449
|
+
border-left: 0;
|
|
450
|
+
border-right: 0;
|
|
451
|
+
border-bottom: 0;
|
|
452
|
+
box-shadow: 0 0 1.875rem 0.125rem rgba(0, 0, 0, 0.15);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.vbi-detail-header-phone {
|
|
456
|
+
font-size: 0.875rem;
|
|
457
|
+
font-family: var(--sapFontFamily);
|
|
458
|
+
font-weight: bold;
|
|
459
|
+
color: @sapUiText;
|
|
460
|
+
overflow: hidden;
|
|
461
|
+
vertical-align: top;
|
|
462
|
+
white-space: nowrap;
|
|
463
|
+
left: 0;
|
|
464
|
+
top: 0;
|
|
465
|
+
padding: 0;
|
|
466
|
+
margin: 0;
|
|
467
|
+
border-width:0;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.vbi-detail-title-phone {
|
|
471
|
+
display: inline-block;
|
|
472
|
+
text-align: center;
|
|
473
|
+
top: 0;
|
|
474
|
+
left: 0;
|
|
475
|
+
margin: 0;
|
|
476
|
+
border-width: 0;
|
|
477
|
+
width: 100%;
|
|
478
|
+
box-sizing: border-box;
|
|
479
|
+
overflow: hidden;
|
|
480
|
+
text-overflow: ellipsis;
|
|
523
481
|
padding: 0 0 0.375rem 0;
|
|
524
482
|
max-width: none;
|
|
525
483
|
}
|
|
@@ -528,46 +486,28 @@ html[ dir=rtl ] .vbi-cursor-middle .vbi-cursor-right {
|
|
|
528
486
|
/* 2d elements for Detail Window.............................................*/
|
|
529
487
|
/*...........................................................................*/
|
|
530
488
|
|
|
531
|
-
.vbi-2d-common
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
vertical-align: middle;
|
|
489
|
+
.vbi-2d-common {
|
|
490
|
+
position: absolute;
|
|
491
|
+
font-size: 12px;
|
|
492
|
+
font-family: var(--sapFontFamily);
|
|
493
|
+
color: var(--sapTextColor);
|
|
494
|
+
background-color: transparent;
|
|
495
|
+
text-align: left;
|
|
496
|
+
vertical-align: middle;
|
|
540
497
|
}
|
|
541
498
|
|
|
542
|
-
.vbi-2d-caption
|
|
543
|
-
|
|
544
|
-
font-family: @sapUiFontFamily;
|
|
499
|
+
.vbi-2d-caption {
|
|
500
|
+
font-family: var(--sapFontFamily);
|
|
545
501
|
color: @sapUiText;
|
|
546
502
|
}
|
|
547
503
|
|
|
548
|
-
vbi-2d-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.vbi-2d-image
|
|
559
|
-
{
|
|
560
|
-
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
.vbi-2d-button
|
|
564
|
-
{
|
|
565
|
-
color: @sapUiButtonTextColor;
|
|
566
|
-
background-color: @sapUiButtonBackground;
|
|
567
|
-
border-color: @sapUiButtonBorderColor;
|
|
568
|
-
border-width: 1px;
|
|
569
|
-
border-style: solid;
|
|
570
|
-
border-radius: 2px;
|
|
504
|
+
.vbi-2d-button {
|
|
505
|
+
color: var(--sapButton_TextColor);
|
|
506
|
+
background-color: var(--sapButton_Background);
|
|
507
|
+
border-color: var(--sapButton_BorderColor);
|
|
508
|
+
border-width: 1px;
|
|
509
|
+
border-style: solid;
|
|
510
|
+
border-radius: 2px;
|
|
571
511
|
}
|
|
572
512
|
|
|
573
513
|
/*...........................................................................*/
|
|
@@ -580,178 +520,115 @@ vbi-2d-label
|
|
|
580
520
|
/*...........................................................................*/
|
|
581
521
|
|
|
582
522
|
.vbi-legend {
|
|
583
|
-
box-shadow: rgba(0, 0, 0, 0.15)
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
color: black;
|
|
594
|
-
text-align: left;
|
|
595
|
-
|
|
523
|
+
box-shadow: rgba(0, 0, 0, 0.15) 0 0 1.875rem 0.125rem;
|
|
524
|
+
top: 0;
|
|
525
|
+
box-sizing: border-box;
|
|
526
|
+
position: absolute;
|
|
527
|
+
margin: 0;
|
|
528
|
+
background-color: rgba(255, 255, 255, 0.9);
|
|
529
|
+
-webkit-user-select: none;
|
|
530
|
+
user-select: none;
|
|
531
|
+
color: black;
|
|
532
|
+
text-align: left;
|
|
596
533
|
}
|
|
597
534
|
|
|
598
|
-
html[
|
|
599
|
-
|
|
535
|
+
html[dir='rtl'] .vbi-legend {
|
|
536
|
+
text-align: right;
|
|
600
537
|
}
|
|
601
538
|
|
|
602
|
-
.vbi-legend > .vbi-legend-header
|
|
603
|
-
{
|
|
539
|
+
.vbi-legend > .vbi-legend-header {
|
|
604
540
|
padding: 0.5rem 1rem 0.5rem 3rem;
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
.vbi-legend-header{
|
|
613
|
-
cursor: pointer;
|
|
614
|
-
-webkit-user-select: none;
|
|
615
|
-
-moz-user-select: none;
|
|
616
|
-
-ms-user-select: none;
|
|
617
|
-
user-select: none;
|
|
618
|
-
touch-action: none;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
.vbi-legend .vbi-legend-title
|
|
622
|
-
{
|
|
623
|
-
display:block;
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
font-size: 14px;
|
|
627
|
-
font-family: @sapUiFontFamily;
|
|
628
|
-
|
|
629
|
-
overflow: hidden;
|
|
630
|
-
text-overflow: ellipsis;
|
|
631
|
-
-webkit-user-select: none;
|
|
632
|
-
-moz-user-select: none;
|
|
633
|
-
-ms-user-select: none;
|
|
634
|
-
user-select: none;
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
.vbi-legend-button
|
|
638
|
-
{
|
|
639
|
-
font-family: "SAP-icons", Arial, Helvetica, sans-serif;
|
|
640
|
-
font-size: 1rem;
|
|
641
|
-
text-align: center;
|
|
642
|
-
position: absolute;
|
|
643
|
-
height: 2rem;
|
|
644
|
-
width: 3rem;
|
|
645
|
-
cursor: pointer;
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
.vbi-legend-button .vbi-legend-button-col
|
|
649
|
-
{
|
|
650
|
-
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
.vbi-legend-button .vbi-legend-button-exp
|
|
654
|
-
{
|
|
655
|
-
|
|
656
|
-
}
|
|
657
|
-
|
|
658
|
-
.vbi-legend-button-col:hover
|
|
659
|
-
{
|
|
660
|
-
|
|
661
|
-
}
|
|
662
|
-
.vbi-legend-button-col:active
|
|
663
|
-
{
|
|
664
|
-
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
.vbi-legend-button-col:before
|
|
668
|
-
{
|
|
669
|
-
content: "\e1f9";
|
|
670
|
-
vertical-align: -25%;
|
|
671
|
-
vertical-align: -webkit-baseline-middle;
|
|
672
|
-
-ms-transform: translate(0, 10%);
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
}
|
|
541
|
+
overflow: hidden;
|
|
542
|
+
vertical-align: top;
|
|
543
|
+
white-space: nowrap;
|
|
544
|
+
top: 0;
|
|
545
|
+
height: 1rem;
|
|
546
|
+
}
|
|
676
547
|
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
548
|
+
.vbi-legend-header {
|
|
549
|
+
cursor: pointer;
|
|
550
|
+
-webkit-user-select: none;
|
|
551
|
+
user-select: none;
|
|
552
|
+
touch-action: none;
|
|
681
553
|
}
|
|
682
|
-
|
|
683
|
-
{
|
|
684
|
-
|
|
554
|
+
|
|
555
|
+
.vbi-legend .vbi-legend-title {
|
|
556
|
+
display: block;
|
|
557
|
+
font-size: 14px;
|
|
558
|
+
font-family: var(--sapFontFamily);
|
|
559
|
+
overflow: hidden;
|
|
560
|
+
text-overflow: ellipsis;
|
|
561
|
+
-webkit-user-select: none;
|
|
562
|
+
user-select: none;
|
|
685
563
|
}
|
|
686
564
|
|
|
687
|
-
.vbi-legend-button
|
|
688
|
-
|
|
689
|
-
|
|
565
|
+
.vbi-legend-button {
|
|
566
|
+
font-family: var(--sapContent_IconFontFamily);
|
|
567
|
+
font-size: 1rem;
|
|
568
|
+
text-align: center;
|
|
569
|
+
position: absolute;
|
|
570
|
+
height: 2rem;
|
|
571
|
+
width: 3rem;
|
|
572
|
+
cursor: pointer;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.vbi-legend-button-col::before {
|
|
576
|
+
content: '\e1f9';
|
|
690
577
|
vertical-align: -25%;
|
|
691
|
-
|
|
692
|
-
-ms-transform: translate(0, 10%);
|
|
693
|
-
}
|
|
578
|
+
}
|
|
694
579
|
|
|
580
|
+
.vbi-legend-button-exp::before {
|
|
581
|
+
content: '\e1c0';
|
|
582
|
+
vertical-align: -25%;
|
|
583
|
+
}
|
|
695
584
|
|
|
696
|
-
html[
|
|
697
|
-
|
|
698
|
-
content: "\e1bf";
|
|
585
|
+
html[dir='rtl'] .vbi-legend-button-exp::before {
|
|
586
|
+
content: '\e1bf';
|
|
699
587
|
}
|
|
700
588
|
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
overflow-y: auto;
|
|
706
|
-
overflow-x: hidden;
|
|
707
|
-
|
|
589
|
+
.vbi-legend-content {
|
|
590
|
+
position: relative;
|
|
591
|
+
overflow-y: auto;
|
|
592
|
+
overflow-x: hidden;
|
|
708
593
|
}
|
|
709
594
|
|
|
710
|
-
.vbi-legend-table
|
|
711
|
-
{
|
|
712
|
-
|
|
713
|
-
|
|
595
|
+
.vbi-legend-table {
|
|
714
596
|
float: left;
|
|
715
597
|
width: 100%;
|
|
716
|
-
border-collapse: collapse;
|
|
717
|
-
|
|
718
|
-
|
|
598
|
+
border-collapse: collapse;
|
|
599
|
+
|
|
600
|
+
td {
|
|
601
|
+
padding-left: 1rem; padding-top: 0; padding-bottom: 0;
|
|
602
|
+
}
|
|
603
|
+
|
|
719
604
|
td:nth-child(1){
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
{
|
|
728
|
-
padding: 0rem 1rem 0rem 0.5rem;
|
|
729
|
-
|
|
730
|
-
-webkit-user-select: none;
|
|
731
|
-
-moz-user-select: none;
|
|
732
|
-
-ms-user-select: none;
|
|
733
|
-
user-select: none;
|
|
734
|
-
white-space: nowrap;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
.vbi-legend-content-celltext-group
|
|
739
|
-
{
|
|
605
|
+
width: 1rem;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
tr {
|
|
609
|
+
line-height: 30px;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
740
612
|
|
|
613
|
+
td.vbi-legend-content-celltext {
|
|
614
|
+
padding: 0 1rem 0 0.5rem;
|
|
615
|
+
-webkit-user-select: none;
|
|
616
|
+
user-select: none;
|
|
617
|
+
white-space: nowrap;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.vbi-legend-content-celltext-group {
|
|
741
621
|
font-style: italic;
|
|
742
622
|
}
|
|
743
623
|
|
|
744
|
-
.vbi-legend-content-celldiv
|
|
745
|
-
{
|
|
624
|
+
.vbi-legend-content-celldiv {
|
|
746
625
|
height: 1rem;
|
|
747
626
|
width: 1rem;
|
|
748
627
|
object-fit: contain;
|
|
749
628
|
transform: translate(0, 25%);
|
|
750
629
|
}
|
|
751
630
|
|
|
752
|
-
.vbi-legend-content-celldiv-square
|
|
753
|
-
{
|
|
754
|
-
|
|
631
|
+
.vbi-legend-content-celldiv-square {
|
|
755
632
|
height: 0.875rem;
|
|
756
633
|
width: 0.875rem;
|
|
757
634
|
border-style: solid;
|
|
@@ -759,12 +636,6 @@ td.vbi-legend-content-celltext
|
|
|
759
636
|
border-color: white;
|
|
760
637
|
}
|
|
761
638
|
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
639
|
/*...........................................................................*/
|
|
769
640
|
/* End of Legend window style ...............................................*/
|
|
770
641
|
/*...........................................................................*/
|
|
@@ -774,32 +645,28 @@ td.vbi-legend-content-celltext
|
|
|
774
645
|
/* Copyright style...........................................................*/
|
|
775
646
|
/*...........................................................................*/
|
|
776
647
|
|
|
777
|
-
.vbi-copyright
|
|
778
|
-
|
|
779
|
-
color: black;
|
|
648
|
+
.vbi-copyright {
|
|
649
|
+
color: black;
|
|
780
650
|
position: absolute;
|
|
781
|
-
bottom:
|
|
782
|
-
right:
|
|
651
|
+
bottom: 0;
|
|
652
|
+
right: 0;
|
|
783
653
|
text-align: center;
|
|
784
654
|
font-size: 10px;
|
|
785
|
-
padding-right:10px;
|
|
786
|
-
padding-left:10px;
|
|
655
|
+
padding-right: 10px;
|
|
656
|
+
padding-left: 10px;
|
|
787
657
|
background-color: rgba(255,255,255,0.45);
|
|
788
|
-
background:
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
color: #436976;
|
|
794
|
-
}
|
|
658
|
+
background: linear-gradient(right,rgba(255,255,255,0.45),rgba(255,255,255,0.45) 80%,rgba(255,255,255,0));
|
|
659
|
+
|
|
660
|
+
a[href] {
|
|
661
|
+
color: #436976;
|
|
662
|
+
}
|
|
795
663
|
}
|
|
796
664
|
|
|
797
665
|
/*...........................................................................*/
|
|
798
666
|
/* Scale style...............................................................*/
|
|
799
667
|
/*...........................................................................*/
|
|
800
668
|
|
|
801
|
-
.vbi-scale
|
|
802
|
-
{
|
|
669
|
+
.vbi-scale {
|
|
803
670
|
left: 5px;
|
|
804
671
|
position: absolute;
|
|
805
672
|
bottom: 1px;
|
|
@@ -815,15 +682,13 @@ td.vbi-legend-content-celltext
|
|
|
815
682
|
/*...........................................................................*/
|
|
816
683
|
|
|
817
684
|
@font-face {
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
font-weight: normal;
|
|
824
|
-
font-style: normal;
|
|
685
|
+
font-family: 'VBI-Icons';
|
|
686
|
+
src:url('fonts/VBI-Icons.woff2') format('woff2'),
|
|
687
|
+
url('fonts/VBI-Icons.woff') format('woff');
|
|
688
|
+
font-weight: normal;
|
|
689
|
+
font-style: normal;
|
|
825
690
|
}
|
|
826
691
|
|
|
827
692
|
/*...........................................................................*/
|
|
828
693
|
/* End of VBI Icon font......................................................*/
|
|
829
|
-
/*...........................................................................*/
|
|
694
|
+
/*...........................................................................*/
|