@mapgis/webclient-mapboxgl-plugin 17.6.21 → 17.8.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/README.md +38 -0
- package/dist/es5/webclient-common.min.js +11 -11
- package/dist/es5/webclient-mapboxgl-plugin.min.js +1 -1
- package/dist/webclient-mapboxgl-plugin-es6.min.js +1 -1
- package/documention/EchartsLayer.html +172 -294
- package/documention/MapView.html +2746 -3023
- package/documention/Popup.html +684 -955
- package/documention/Screenshot.html +455 -665
- package/documention/SketchEditor.html +1584 -1990
- package/documention/fonts/fontawesome-webfont.woff2 +0 -0
- package/documention/fonts/glyphicons-halflings-regular.eot +0 -0
- package/documention/fonts/glyphicons-halflings-regular.svg +288 -0
- package/documention/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/documention/fonts/glyphicons-halflings-regular.woff +0 -0
- package/documention/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/documention/global.html +3334 -4267
- package/documention/index.html +86 -224
- package/documention/initializeOptions.html +265 -350
- package/documention/module-%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%8F%AF%E8%A7%86%E5%8C%96.MapvLayer.html +195 -319
- package/documention/nav.html +263 -0
- package/documention/scripts/adminlte/app.min.js +472 -0
- package/documention/scripts/bootstrap.min.js +7 -0
- package/documention/scripts/jquery.min.js +4 -0
- package/documention/scripts/jquery.min.map +1 -0
- package/documention/scripts/linenumber.js +22 -19
- package/documention/scripts/main.js +95 -0
- package/documention/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/documention/scripts/prettify/lang-css.js +2 -0
- package/documention/scripts/prettify/prettify.js +28 -0
- package/documention/scripts/underscore-min.js +6 -0
- package/documention/scripts/underscore-min.map +1 -0
- package/documention/styles/adminlte/AdminLTE.min.css +7 -0
- package/documention/styles/adminlte/font-awesome.min.css +4 -0
- package/documention/styles/adminlte/skin-blue.min.css +1 -0
- package/documention/styles/bootstrap.min.css +6 -0
- package/documention/styles/common.css +175 -0
- package/documention/styles/examples.css +116 -0
- package/documention/styles/font-awesome.css +2337 -0
- package/documention/styles/header.css +556 -0
- package/documention/styles/jaguar.css +553 -0
- package/documention/styles/prettify-tomorrow.css +1 -1
- package/documention/styles/style.customize.css +631 -0
- package/package.json +4 -4
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
ul,
|
|
2
|
+
ol {
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
li {
|
|
8
|
+
list-style-type: none;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
a {
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
color: #D44F00;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
a:hover,
|
|
17
|
+
a:active,
|
|
18
|
+
a:focus {
|
|
19
|
+
color: #df9d00;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#wrap {
|
|
23
|
+
position: relative;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
::-webkit-scrollbar {
|
|
27
|
+
width: 6px;
|
|
28
|
+
height: 10px;
|
|
29
|
+
background-color: transparent;
|
|
30
|
+
padding-top: 50px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
::-webkit-scrollbar-thumb {
|
|
34
|
+
background-color: #282828;
|
|
35
|
+
border-radius: 4px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
::-webkit-scrollbar-corner {
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.main-sidebar {
|
|
43
|
+
position: fixed;
|
|
44
|
+
float: left;
|
|
45
|
+
width: 300px;
|
|
46
|
+
height: 100%;
|
|
47
|
+
padding-top: 0px;
|
|
48
|
+
background-color: #424242;
|
|
49
|
+
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.main-sidebar .applicationName {
|
|
53
|
+
margin: 0;
|
|
54
|
+
margin-top: 15px;
|
|
55
|
+
padding: 10px 15px;
|
|
56
|
+
font: bold 1.25em Helvetica;
|
|
57
|
+
color: #fff;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.main-sidebar .applicationName a {
|
|
61
|
+
color: #fff;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.main-sidebar .search {
|
|
65
|
+
padding: 10px 15px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.main-sidebar .list {
|
|
69
|
+
height: 100%;
|
|
70
|
+
padding: 5px 5px 0 5px;
|
|
71
|
+
position: relative;
|
|
72
|
+
overflow: auto;
|
|
73
|
+
width: 100%;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.main-sidebar li.item {
|
|
77
|
+
margin-top: 8px;
|
|
78
|
+
padding-bottom: 8px;
|
|
79
|
+
margin-left: 5px;
|
|
80
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.main-sidebar li.item a {
|
|
84
|
+
color: #fff;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.main-sidebar li.item a:hover {
|
|
88
|
+
color: #282828;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.main-sidebar li.item .title {
|
|
92
|
+
cursor: pointer;
|
|
93
|
+
position: relative;
|
|
94
|
+
display: block;
|
|
95
|
+
font-size: 0.8em;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.sidebar-menu .treeview-menu {
|
|
99
|
+
padding-left: 25px
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.sidebar-menu .treeview-menu>li>a {
|
|
103
|
+
padding: 5px
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.sidebar-menu li>a {
|
|
107
|
+
color: #f5f5f5;
|
|
108
|
+
padding: 10px 5px 10px 15px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.main-sidebar li.item .title a:hover {
|
|
112
|
+
color: #A1A1A1;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.main-sidebar li.item .title .static {
|
|
116
|
+
display: block;
|
|
117
|
+
border-radius: 3px;
|
|
118
|
+
background-color: #ccc;
|
|
119
|
+
color: #000;
|
|
120
|
+
font-size: 0.7em;
|
|
121
|
+
padding: 2px 4px;
|
|
122
|
+
float: right;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.main-sidebar li.item .subtitle {
|
|
126
|
+
margin-top: 10px;
|
|
127
|
+
font: bold 0.65em Helvetica;
|
|
128
|
+
color: #ccc;
|
|
129
|
+
display: block;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.main-sidebar li.item ul>li {
|
|
133
|
+
font-size: 0.7em;
|
|
134
|
+
padding-left: 8px;
|
|
135
|
+
margin-top: 2px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.main-sidebar li.item .itemMembers {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.main {
|
|
143
|
+
padding: 10px 20px;
|
|
144
|
+
margin-left: 300px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.main .page-title {
|
|
148
|
+
display: none;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.main h1 {
|
|
152
|
+
font-weight: bold;
|
|
153
|
+
font-size: 1.6em;
|
|
154
|
+
margin: 0;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.main h2 {
|
|
158
|
+
font-size: 2.25em;
|
|
159
|
+
margin: 0;
|
|
160
|
+
margin-bottom: 10px;
|
|
161
|
+
font-weight: bold;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.main h3 {
|
|
165
|
+
font-size: 12px;
|
|
166
|
+
margin: 5px 0;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.main h4 {
|
|
170
|
+
font-weight: bold;
|
|
171
|
+
font-size: 1em;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.main h5 {
|
|
175
|
+
font-size: 13px;
|
|
176
|
+
font-weight: bold;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.main dd {
|
|
180
|
+
font-size: 12px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.main h4.name span.type-signature {
|
|
184
|
+
display: inline-block;
|
|
185
|
+
border-radius: 3px;
|
|
186
|
+
background-color: gray;
|
|
187
|
+
color: #fff;
|
|
188
|
+
font-size: 0.7em;
|
|
189
|
+
padding: 2px 4px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.main h4.name span.type {
|
|
193
|
+
margin-left: 5px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.main h4.name span.glyphicon,
|
|
197
|
+
span .glyphicon {
|
|
198
|
+
display: inline-block;
|
|
199
|
+
vertical-align: middle;
|
|
200
|
+
color: #e1e1e1;
|
|
201
|
+
margin-left: 7px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.sidebar-menu li>a>.pull-right-container {
|
|
205
|
+
top: 30%;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.main h4.name span.returnType {
|
|
209
|
+
margin-left: 3px;
|
|
210
|
+
background-color: transparent !important;
|
|
211
|
+
color: gray !important;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.main span.static {
|
|
215
|
+
display: inline-block;
|
|
216
|
+
border-radius: 3px;
|
|
217
|
+
background-color: #ccc !important;
|
|
218
|
+
color: #fff;
|
|
219
|
+
font-size: 0.4em;
|
|
220
|
+
padding: 2px 2px;
|
|
221
|
+
margin-right: 4px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.main span.number {
|
|
225
|
+
background-color: gray !important;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.main span.string {
|
|
229
|
+
background-color: gray !important;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.main span.object {
|
|
233
|
+
background-color: #2a6496 !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.main span.array {
|
|
237
|
+
background-color: #2a6496 !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.main span.boolean {
|
|
241
|
+
background-color: #ee7d7d !important;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.main .subsection-title {
|
|
245
|
+
font-size: 1.75rem;
|
|
246
|
+
margin-top: 36px;
|
|
247
|
+
margin-bottom: 12px;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.main .description {
|
|
251
|
+
margin-top: 10px;
|
|
252
|
+
font-size: 13px;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.main .description ul,
|
|
256
|
+
.main .description ol {
|
|
257
|
+
margin-bottom: 15px;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.main .description p {
|
|
261
|
+
font-size: 12px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.main .description h2 {
|
|
265
|
+
margin-top: 30px;
|
|
266
|
+
margin-bottom: 10px;
|
|
267
|
+
padding-bottom: 10px;
|
|
268
|
+
border-bottom: 1px solid #efefef;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.main .description pre {
|
|
272
|
+
margin: 10px 0;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.main .tag-source {
|
|
276
|
+
font-size: 12px;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.main dt.tag-source {
|
|
280
|
+
margin-top: 5px;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.main dt.tag-todo {
|
|
284
|
+
font-size: 10px;
|
|
285
|
+
display: inline-block;
|
|
286
|
+
background-color: #2a6496;
|
|
287
|
+
color: #fff;
|
|
288
|
+
padding: 2px 4px;
|
|
289
|
+
border-radius: 5px;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.main .type-signature {
|
|
293
|
+
font-size: 12px;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.main .tag-deprecated {
|
|
297
|
+
display: inline-block;
|
|
298
|
+
font-size: 10px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.main .important {
|
|
302
|
+
background-color: #ee7d7d;
|
|
303
|
+
color: #fff;
|
|
304
|
+
padding: 2px 4px;
|
|
305
|
+
border-radius: 5px;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.main .nameContainer {
|
|
309
|
+
position: relative;
|
|
310
|
+
padding-top: 10px;
|
|
311
|
+
border-top: 1px solid #e1e1e1;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.main .nameContainer .inherited {
|
|
315
|
+
display: inline-block;
|
|
316
|
+
border-radius: 3px;
|
|
317
|
+
background-color: #888 !important;
|
|
318
|
+
font-size: 0.7em;
|
|
319
|
+
padding: 2px 4px;
|
|
320
|
+
margin-right: 5px;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.main .nameContainer .inherited a {
|
|
324
|
+
color: #fff;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.main .nameContainer .tag-source {
|
|
328
|
+
position: absolute;
|
|
329
|
+
top: 17px;
|
|
330
|
+
right: 0;
|
|
331
|
+
font-size: 10px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.main .nameContainer .tag-source a {
|
|
335
|
+
color: gray;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.main .nameContainer.inherited {
|
|
339
|
+
color: gray;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.main .nameContainer h4 {
|
|
343
|
+
margin-right: 150px;
|
|
344
|
+
line-height: 1.3;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.main .nameContainer h4 .signature {
|
|
348
|
+
font-size: 13px;
|
|
349
|
+
font-weight: normal;
|
|
350
|
+
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.main .nameContainer h4 .type-signature.type a {
|
|
354
|
+
color: #fff;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.main pre {
|
|
358
|
+
font-size: 11px;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.main table {
|
|
362
|
+
width: 100%;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.main table th {
|
|
366
|
+
padding: 3px 3px;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.main table td {
|
|
370
|
+
vertical-align: top;
|
|
371
|
+
padding: 5px 3px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.main table .name {
|
|
375
|
+
width: 110px;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.main table .type {
|
|
379
|
+
width: 110px;
|
|
380
|
+
color: #aaa;
|
|
381
|
+
font-size: 11px;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.main table .default {
|
|
385
|
+
width: 110px;
|
|
386
|
+
color: #aaa;
|
|
387
|
+
font-size: 11px;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.main table .attributes {
|
|
391
|
+
width: 110px;
|
|
392
|
+
color: #aaa;
|
|
393
|
+
font-size: 11px;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.main table .description {
|
|
397
|
+
font-size: 12px;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.main table .description p {
|
|
401
|
+
margin: 0;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.main table .optional {
|
|
405
|
+
float: left;
|
|
406
|
+
border-radius: 3px;
|
|
407
|
+
background-color: #ddd !important;
|
|
408
|
+
font-size: 0.7em;
|
|
409
|
+
padding-left: 4px;
|
|
410
|
+
padding-right: 4px;
|
|
411
|
+
margin-right: 5px;
|
|
412
|
+
color: gray;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.main .readme p {
|
|
416
|
+
margin-top: 15px;
|
|
417
|
+
line-height: 1.2;
|
|
418
|
+
font-size: 0.85em;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.main .readme h1 {
|
|
422
|
+
font-size: 1.7em;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.main .readme h2 {
|
|
426
|
+
margin-top: 30px;
|
|
427
|
+
margin-bottom: 10px;
|
|
428
|
+
padding-bottom: 10px;
|
|
429
|
+
border-bottom: 1px solid #e1e1e1;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.main .readme li {
|
|
433
|
+
font-size: 0.9em;
|
|
434
|
+
margin-bottom: 10px;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.main article ol {
|
|
438
|
+
margin-left: 25px;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.main article ol>li {
|
|
442
|
+
list-style-type: decimal;
|
|
443
|
+
margin-bottom: 5px;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.main article ul>li {
|
|
447
|
+
margin-bottom: 5px;
|
|
448
|
+
margin-top: 20px;
|
|
449
|
+
list-style-type: none;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.treeview>a {
|
|
453
|
+
cursor: pointer;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
a.sidebar-toggle {
|
|
457
|
+
width: 100%;
|
|
458
|
+
height: 36px;
|
|
459
|
+
line-height: 36px;
|
|
460
|
+
text-align: center;
|
|
461
|
+
background-color: #282828;
|
|
462
|
+
color: white !important;
|
|
463
|
+
display: block;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
a.sidebar-toggle {
|
|
467
|
+
background-color: #282828;
|
|
468
|
+
position: absolute;
|
|
469
|
+
top: 50%;
|
|
470
|
+
width: 26px;
|
|
471
|
+
height: 36px;
|
|
472
|
+
left: 100%;
|
|
473
|
+
text-align: center;
|
|
474
|
+
color: white !important;
|
|
475
|
+
line-height: 36px;
|
|
476
|
+
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.sidebar-mini.sidebar-collapse .main-sidebar {
|
|
480
|
+
transform: translate(-50px, 0);
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.main-sidebar {
|
|
484
|
+
position: fixed;
|
|
485
|
+
z-index: 900;
|
|
486
|
+
height: 100%;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.sidebar-mini.sidebar-collapse .content-wrapper {
|
|
490
|
+
margin-left: 26px !important;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.content-wrapper {
|
|
494
|
+
background-color: #fff;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
footer {
|
|
498
|
+
margin: 15px 0;
|
|
499
|
+
padding-top: 15px;
|
|
500
|
+
border-top: 1px solid #e1e1e1;
|
|
501
|
+
font-family: "freight-text-pro", Georgia, Cambria, "Times New Roman", Times, serif;
|
|
502
|
+
font-size: 0.8em;
|
|
503
|
+
color: gray;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
@media (max-width: 767px) {
|
|
507
|
+
.main-sidebar {
|
|
508
|
+
transform: translate(-250px, 0);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.content-wrapper {
|
|
512
|
+
margin-left: 26px !important;
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.main .container-overview h5 {
|
|
517
|
+
font-size: 1.75rem;
|
|
518
|
+
margin-top: 36px;
|
|
519
|
+
margin-bottom: 20px;
|
|
520
|
+
font-weight: normal;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.main .container-overview .nameContainer {
|
|
524
|
+
position: relative;
|
|
525
|
+
padding-top: 0;
|
|
526
|
+
border-top: 0;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.main .details h5 {
|
|
530
|
+
font-size: 13px;
|
|
531
|
+
margin-top: 14px;
|
|
532
|
+
margin-bottom: 14px;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.main-sidebar {
|
|
536
|
+
top: 57px;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.main-header .navbar {
|
|
540
|
+
background-color: #1a94fb;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.main-header .navbar .nav>li>a {
|
|
544
|
+
color: #fff;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.navbar-menu:hover {
|
|
548
|
+
background-color: #fff3 !important;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.center:hover {
|
|
552
|
+
background-color: #fff3 !important;
|
|
553
|
+
}
|