@natec/mef-dev-ui-kit 20.1.21 → 20.1.23
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/fesm2022/natec-mef-dev-ui-kit.mjs +46 -46
- package/fesm2022/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/styles/core.scss +34 -283
- package/src/lib/styles/icons.scss +191 -0
- package/src/lib/styles/pg/modules/_cards.scss +10 -11
- package/src/lib/styles/pg/modules/_select.scss +8 -2
- package/src/lib/styles/pg/modules/_sidebar.scss +0 -1
- package/src/lib/styles/pg/modules/_switch.scss +1 -2
- package/src/lib/styles/pg/modules/_tabs.scss +0 -1
- package/src/lib/styles/pg/modules/_tabs_accordian.scss +30 -40
- package/src/lib/styles/pg/modules/_typography.scss +75 -492
- package/src/lib/styles/vars.scss +25 -188
- package/src/lib/styles/pg/_color.scss +0 -688
- package/src/lib/styles/pg/_dropdown.scss +0 -38
- package/src/lib/styles/pg/_mixins.scss +0 -489
- package/src/lib/styles/pg/_responsive.scss +0 -1100
- package/src/lib/styles/pg/modules/_header.scss +0 -261
- package/src/lib/styles/pg/modules/_layout.scss +0 -184
- package/src/lib/styles/pg/modules/_misc.scss +0 -702
- package/src/lib/styles/pg/vendor/ngx-google-map.scss +0 -18
- package/src/lib/styles/pg/vendor/typehead.scss +0 -31
|
@@ -1,702 +0,0 @@
|
|
|
1
|
-
/*------------------------------------------------------------------
|
|
2
|
-
[28. Misc : Helper Classes]
|
|
3
|
-
*/
|
|
4
|
-
@use '../../vars.scss' as *;
|
|
5
|
-
@use '../_mixins.scss' as mix;
|
|
6
|
-
|
|
7
|
-
.custom{
|
|
8
|
-
height:150px;
|
|
9
|
-
}
|
|
10
|
-
.full-height{
|
|
11
|
-
height: 100% !important;
|
|
12
|
-
}
|
|
13
|
-
.icon-list{
|
|
14
|
-
.fa-item{
|
|
15
|
-
display: block;
|
|
16
|
-
color: $color-master-darkest;
|
|
17
|
-
line-height: 32px;
|
|
18
|
-
height: 32px;
|
|
19
|
-
padding-left: 10px;
|
|
20
|
-
& > i{
|
|
21
|
-
width: 32px;
|
|
22
|
-
font-size: 14px;
|
|
23
|
-
display: inline-block;
|
|
24
|
-
text-align: right;
|
|
25
|
-
margin-right: 10px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.push-on-sidebar-open{
|
|
31
|
-
-webkit-transition: -webkit-transform 0.25s ease;
|
|
32
|
-
transition: transform 0.25s ease;
|
|
33
|
-
-webkit-backface-visibility: hidden;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/* Thumbnail for icons and profile pics
|
|
37
|
-
------------------------------------
|
|
38
|
-
*/
|
|
39
|
-
.thumbnail-wrapper{
|
|
40
|
-
display: inline-block;
|
|
41
|
-
overflow: hidden;
|
|
42
|
-
float:left;
|
|
43
|
-
&.circular{
|
|
44
|
-
@include mix.border-radius(50%);
|
|
45
|
-
}
|
|
46
|
-
&.bordered{
|
|
47
|
-
border-width: 4px;
|
|
48
|
-
border-style:solid;
|
|
49
|
-
&.d16{
|
|
50
|
-
@include mix.square(16+4*1px);
|
|
51
|
-
& > *{
|
|
52
|
-
line-height: 12px
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
&.d24{
|
|
56
|
-
@include mix.square(24+4*1px);
|
|
57
|
-
& > *{
|
|
58
|
-
line-height: 24px
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
&.d32{
|
|
62
|
-
@include mix.square(32+4*1px);
|
|
63
|
-
& > *{
|
|
64
|
-
line-height: 28px
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
&.d48{
|
|
68
|
-
@include mix.square(48+4*1px);
|
|
69
|
-
& > *{
|
|
70
|
-
line-height: 44px
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
&.d16{
|
|
75
|
-
@include mix.square(16px);
|
|
76
|
-
& > *{
|
|
77
|
-
line-height: 16px
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
&.d24{
|
|
81
|
-
@include mix.square(24px);
|
|
82
|
-
& > *{
|
|
83
|
-
line-height: 24px
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
&.d32{
|
|
87
|
-
@include mix.square(32px);
|
|
88
|
-
& > *{
|
|
89
|
-
line-height: 32px
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
&.d39{
|
|
93
|
-
@include mix.square(39px);
|
|
94
|
-
& > *{
|
|
95
|
-
line-height: 39px
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
&.d48{
|
|
99
|
-
@include mix.square(48px);
|
|
100
|
-
& > *{
|
|
101
|
-
line-height: 50px
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
& > *{
|
|
105
|
-
vertical-align: middle;
|
|
106
|
-
width: 100%;
|
|
107
|
-
height: 100%;
|
|
108
|
-
text-align: center;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
/* Profile dropdown
|
|
113
|
-
------------------------------------
|
|
114
|
-
*/
|
|
115
|
-
.profile-dropdown{
|
|
116
|
-
background: #fff;
|
|
117
|
-
padding: 0;
|
|
118
|
-
&:before {
|
|
119
|
-
position: absolute;
|
|
120
|
-
top: -7px;
|
|
121
|
-
right: 15px;
|
|
122
|
-
display: inline-block;
|
|
123
|
-
border-right: 7px solid transparent;
|
|
124
|
-
border-bottom: 7px solid #ccc;
|
|
125
|
-
border-left: 7px solid transparent;
|
|
126
|
-
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
127
|
-
content: '';
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
&:after {
|
|
131
|
-
position: absolute;
|
|
132
|
-
top: -6px;
|
|
133
|
-
right: 16px;
|
|
134
|
-
display: inline-block;
|
|
135
|
-
border-right: 6px solid transparent;
|
|
136
|
-
border-bottom: 6px solid #ffffff;
|
|
137
|
-
border-left: 6px solid transparent;
|
|
138
|
-
content: '';
|
|
139
|
-
}
|
|
140
|
-
& > a{
|
|
141
|
-
opacity: .5;
|
|
142
|
-
@include mix.transition(opacity ease .3s);
|
|
143
|
-
padding-left:17px;
|
|
144
|
-
padding-right:37px;
|
|
145
|
-
min-width: 138px;
|
|
146
|
-
& > i {
|
|
147
|
-
margin-right:5px;
|
|
148
|
-
}
|
|
149
|
-
&:hover{
|
|
150
|
-
opacity: 1;
|
|
151
|
-
}
|
|
152
|
-
&:last-child{
|
|
153
|
-
margin-top: 11px;
|
|
154
|
-
padding-bottom: 3px !important;
|
|
155
|
-
padding-top: 3px;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
.profile-dropdown-toggle{
|
|
160
|
-
background: transparent;
|
|
161
|
-
border: none;
|
|
162
|
-
}
|
|
163
|
-
/* Scroll
|
|
164
|
-
------------------------------------
|
|
165
|
-
*/
|
|
166
|
-
.scrollable {
|
|
167
|
-
overflow-y: auto;
|
|
168
|
-
-webkit-overflow-scrolling: touch;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/* Overides
|
|
172
|
-
------------------------------------
|
|
173
|
-
*/
|
|
174
|
-
.no-padding {
|
|
175
|
-
padding: 0px !important;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.no-margin {
|
|
179
|
-
margin: 0px !important;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.no-overflow{
|
|
183
|
-
overflow: hidden !important;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.auto-overflow{
|
|
187
|
-
overflow: auto;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.reset-overflow{
|
|
191
|
-
overflow: initial !important;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.center-margin{
|
|
195
|
-
margin-left: auto;
|
|
196
|
-
margin-right: auto;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.inherit-size{
|
|
200
|
-
width:inherit;
|
|
201
|
-
height:inherit
|
|
202
|
-
}
|
|
203
|
-
.inherit-height{
|
|
204
|
-
height:inherit;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.image-responsive-height{
|
|
208
|
-
width: 100%;
|
|
209
|
-
}
|
|
210
|
-
.image-responsive-width{
|
|
211
|
-
height: 100%;
|
|
212
|
-
}
|
|
213
|
-
.overlayer {
|
|
214
|
-
position: absolute;
|
|
215
|
-
display: block;
|
|
216
|
-
z-index: 21;
|
|
217
|
-
&.fullwidth {
|
|
218
|
-
width: 100%;
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
.overlayer-wrapper {
|
|
222
|
-
position: relative;
|
|
223
|
-
display: block;
|
|
224
|
-
z-index: 10;
|
|
225
|
-
}
|
|
226
|
-
.overlay-fixed {
|
|
227
|
-
position: fixed !important;
|
|
228
|
-
top: auto !important;
|
|
229
|
-
}
|
|
230
|
-
.top-left {
|
|
231
|
-
position: absolute !important;
|
|
232
|
-
top: 0;
|
|
233
|
-
left: 0;
|
|
234
|
-
}
|
|
235
|
-
.top-right {
|
|
236
|
-
position: absolute !important;
|
|
237
|
-
top: 1px;
|
|
238
|
-
right: 0;
|
|
239
|
-
}
|
|
240
|
-
.bottom-left {
|
|
241
|
-
position: absolute !important;
|
|
242
|
-
bottom: 1px;
|
|
243
|
-
left: 0;
|
|
244
|
-
}
|
|
245
|
-
.bottom-right {
|
|
246
|
-
position: absolute !important;
|
|
247
|
-
bottom: 0;
|
|
248
|
-
right: 0;
|
|
249
|
-
}
|
|
250
|
-
.pull-bottom{
|
|
251
|
-
position: absolute !important;
|
|
252
|
-
bottom: 0;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.pull-up{
|
|
256
|
-
position:absolute !important;
|
|
257
|
-
top: 0;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.pull-center {
|
|
261
|
-
left: 0;
|
|
262
|
-
}
|
|
263
|
-
.pull-right{
|
|
264
|
-
float:right !important;
|
|
265
|
-
}
|
|
266
|
-
.pull-center{
|
|
267
|
-
position: absolute;
|
|
268
|
-
left: 0;
|
|
269
|
-
right: 0;
|
|
270
|
-
width: 100%;
|
|
271
|
-
display: table;
|
|
272
|
-
z-index: 1;
|
|
273
|
-
}
|
|
274
|
-
.cursor{
|
|
275
|
-
cursor: pointer;
|
|
276
|
-
}
|
|
277
|
-
.scroll-x-hidden{
|
|
278
|
-
overflow-x: hidden !important;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
/* Generic Padding Helpers
|
|
282
|
-
------------------------------------
|
|
283
|
-
*/
|
|
284
|
-
|
|
285
|
-
@mixin generate-paddings-options($n, $j:0){
|
|
286
|
-
@if $j <= $n {
|
|
287
|
-
@for $i from $j through $n {
|
|
288
|
-
$step : $i*5;
|
|
289
|
-
|
|
290
|
-
.p-t-#{$step} {
|
|
291
|
-
padding-top: ($step*1px) !important;
|
|
292
|
-
}
|
|
293
|
-
.p-r-#{$step} {
|
|
294
|
-
padding-right: ($step*1px) !important;
|
|
295
|
-
}
|
|
296
|
-
.p-l-#{$step} {
|
|
297
|
-
padding-left: ($step*1px) !important;
|
|
298
|
-
}
|
|
299
|
-
.p-b-#{$step} {
|
|
300
|
-
padding-bottom: ($step*1px) !important;
|
|
301
|
-
}
|
|
302
|
-
.padding-#{$step} {
|
|
303
|
-
padding: ($step*1px) !important;
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
/* Generic Margin Helpers
|
|
310
|
-
------------------------------------
|
|
311
|
-
*/
|
|
312
|
-
@mixin generate-margin-options($n, $j: 0) {
|
|
313
|
-
@if $j <= $n {
|
|
314
|
-
@for $i from $j through $n {
|
|
315
|
-
$step : $i*5;
|
|
316
|
-
.m-t-#{$step} {
|
|
317
|
-
margin-top: ($step*1px);
|
|
318
|
-
}
|
|
319
|
-
.m-r-#{$step} {
|
|
320
|
-
margin-right: ($step*1px);
|
|
321
|
-
}
|
|
322
|
-
.m-l-#{$step} {
|
|
323
|
-
margin-left: ($step*1px);
|
|
324
|
-
}
|
|
325
|
-
.m-b-#{$step} {
|
|
326
|
-
margin-bottom: ($step*1px);
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.full-width{
|
|
333
|
-
width: 100%;
|
|
334
|
-
}
|
|
335
|
-
.hide {
|
|
336
|
-
display: none !important;
|
|
337
|
-
}
|
|
338
|
-
.inline{
|
|
339
|
-
display:inline-block !important;
|
|
340
|
-
}
|
|
341
|
-
.block{
|
|
342
|
-
display: block !important;
|
|
343
|
-
}
|
|
344
|
-
.b-blank{
|
|
345
|
-
border-color:#000;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
/* Border Helpers
|
|
349
|
-
------------------------------------
|
|
350
|
-
*/
|
|
351
|
-
.b-a,
|
|
352
|
-
.b-r,
|
|
353
|
-
.b-l,
|
|
354
|
-
.b-t,
|
|
355
|
-
.b-b{
|
|
356
|
-
border-style: solid;
|
|
357
|
-
border-width: 0;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
.b-r{
|
|
361
|
-
border-right-width:1px;
|
|
362
|
-
}
|
|
363
|
-
.b-l{
|
|
364
|
-
border-left-width:1px;
|
|
365
|
-
}
|
|
366
|
-
.b-t{
|
|
367
|
-
border-top-width:1px;
|
|
368
|
-
}
|
|
369
|
-
.b-b{
|
|
370
|
-
border-bottom-width:1px;
|
|
371
|
-
}
|
|
372
|
-
.b-a{
|
|
373
|
-
border-width:1px;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.b-dashed{
|
|
377
|
-
border-style: dashed;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.b-thick{
|
|
381
|
-
border-width : 2px;
|
|
382
|
-
}
|
|
383
|
-
.b-light{
|
|
384
|
-
border-color:rgba(0, 0, 0, 0.1);
|
|
385
|
-
}
|
|
386
|
-
.b-transparent{
|
|
387
|
-
border-color:rgba(0, 0, 0, 0.4);
|
|
388
|
-
}
|
|
389
|
-
.b-transparent-white{
|
|
390
|
-
border-color:rgba(255, 255, 255, 0.3);
|
|
391
|
-
}
|
|
392
|
-
.b-grey{
|
|
393
|
-
border-color:$color-master-light;
|
|
394
|
-
}
|
|
395
|
-
.b-white{
|
|
396
|
-
border-color:#fff;
|
|
397
|
-
}
|
|
398
|
-
.b-primary{
|
|
399
|
-
border-color:$color-primary;
|
|
400
|
-
}
|
|
401
|
-
.b-complete{
|
|
402
|
-
border-color:$color-primary;
|
|
403
|
-
}
|
|
404
|
-
.b-success{
|
|
405
|
-
border-color:$color-success;
|
|
406
|
-
}
|
|
407
|
-
.b-info{
|
|
408
|
-
border-color:$color-info;
|
|
409
|
-
}
|
|
410
|
-
.b-danger{
|
|
411
|
-
border-color:$color-danger;
|
|
412
|
-
}
|
|
413
|
-
.b-warning{
|
|
414
|
-
border-color:$color-warning;
|
|
415
|
-
}
|
|
416
|
-
/* Border Radius
|
|
417
|
-
------------------------------------
|
|
418
|
-
*/
|
|
419
|
-
.b-rad-sm{
|
|
420
|
-
@include mix.border-radius(3px);
|
|
421
|
-
}
|
|
422
|
-
.b-rad-md{
|
|
423
|
-
@include mix.border-radius(5px);
|
|
424
|
-
}
|
|
425
|
-
.b-rad-lg{
|
|
426
|
-
@include mix.border-radius(7px);
|
|
427
|
-
}
|
|
428
|
-
.no-border{
|
|
429
|
-
border: none !important;
|
|
430
|
-
}
|
|
431
|
-
/** Profile Wrappers **/
|
|
432
|
-
.profile-img-wrapper{
|
|
433
|
-
display:inline-block;
|
|
434
|
-
float:left;
|
|
435
|
-
border-radius: 100px 100px 100px 100px;
|
|
436
|
-
display: inline-block;
|
|
437
|
-
height: 35px;
|
|
438
|
-
overflow: hidden;
|
|
439
|
-
width: 35px;
|
|
440
|
-
-webkit-flex: 1;
|
|
441
|
-
-moz-flex: 1;
|
|
442
|
-
flex: 1;
|
|
443
|
-
}
|
|
444
|
-
.profile-img-wrapper.big{
|
|
445
|
-
height: 68px;
|
|
446
|
-
width: 68px;
|
|
447
|
-
}
|
|
448
|
-
.profile-img-wrapper.with-left-space-custom{
|
|
449
|
-
margin-left:7px;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.relative{
|
|
453
|
-
position: relative;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.flex-1{
|
|
457
|
-
-webkit-box-flex: 1;
|
|
458
|
-
-moz-box-flex: 1;
|
|
459
|
-
-webkit-flex: 1;
|
|
460
|
-
-ms-flex: 1;
|
|
461
|
-
flex: 1;
|
|
462
|
-
-ms-flex-negative:0;
|
|
463
|
-
flex-shrink:0;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
[data-pages-bg-image]{
|
|
467
|
-
background-size: cover;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
/* Demo Purposes */
|
|
471
|
-
.icon-set-preview{
|
|
472
|
-
transition: opacity 0.1s linear;
|
|
473
|
-
}
|
|
474
|
-
#icon-list{
|
|
475
|
-
transition: all 0.1s ease-in-out;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.visible-xlg {
|
|
479
|
-
display: none;
|
|
480
|
-
}
|
|
481
|
-
.hidden-xlg {
|
|
482
|
-
display: block;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
// Dashboard widget heights
|
|
486
|
-
|
|
487
|
-
.sm-gutter .row > [class^="col-"], .sm-gutter .row > [class*="col-"] {
|
|
488
|
-
padding-left: $layout-gutter-sm;
|
|
489
|
-
padding-right: $layout-gutter-sm;
|
|
490
|
-
}
|
|
491
|
-
.sm-gutter .row {
|
|
492
|
-
margin-left: -$layout-gutter-sm;
|
|
493
|
-
margin-right: -$layout-gutter-sm;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
/* Aspect ratio */
|
|
497
|
-
.ar-1-1,
|
|
498
|
-
.ar-2-1,
|
|
499
|
-
.ar-1-2,
|
|
500
|
-
.ar-3-2,
|
|
501
|
-
.ar-2-3{
|
|
502
|
-
.card{
|
|
503
|
-
margin: 0;
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
.ar-1-1{
|
|
507
|
-
position: relative;
|
|
508
|
-
width: 100%; /* desired width */
|
|
509
|
-
overflow: hidden;
|
|
510
|
-
&:before{
|
|
511
|
-
content: "";
|
|
512
|
-
display: block;
|
|
513
|
-
padding-top: 100%; /* initial ratio of 1:1*/
|
|
514
|
-
}
|
|
515
|
-
& > div{
|
|
516
|
-
position: absolute;
|
|
517
|
-
top: 0;
|
|
518
|
-
left: 0;
|
|
519
|
-
bottom: 0;
|
|
520
|
-
right: 0;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.ar-2-1{
|
|
525
|
-
position: relative;
|
|
526
|
-
width: 100%; /* desired width */
|
|
527
|
-
overflow: hidden;
|
|
528
|
-
&:before{
|
|
529
|
-
content: "";
|
|
530
|
-
display: block;
|
|
531
|
-
padding-top: calc(50% - #{$layout-gutter-sm}); /* initial ratio of 1:1*/
|
|
532
|
-
}
|
|
533
|
-
& > div{
|
|
534
|
-
position: absolute;
|
|
535
|
-
top: 0;
|
|
536
|
-
left: 0;
|
|
537
|
-
bottom: 0;
|
|
538
|
-
right: 0;
|
|
539
|
-
}
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.ar-1-2{
|
|
543
|
-
position: relative;
|
|
544
|
-
width: 100%; /* desired width */
|
|
545
|
-
overflow: hidden;
|
|
546
|
-
&:before{
|
|
547
|
-
content: "";
|
|
548
|
-
display: block;
|
|
549
|
-
padding-top: calc(150% - #{$layout-gutter-sm}); /* initial ratio of 1:1*/
|
|
550
|
-
}
|
|
551
|
-
& > div{
|
|
552
|
-
position: absolute;
|
|
553
|
-
top: 0;
|
|
554
|
-
left: 0;
|
|
555
|
-
bottom: 0;
|
|
556
|
-
right: 0;
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
.ar-3-2{
|
|
561
|
-
position: relative;
|
|
562
|
-
width: 100%; /* desired width */
|
|
563
|
-
overflow: hidden;
|
|
564
|
-
&:before{
|
|
565
|
-
content: "";
|
|
566
|
-
display: block;
|
|
567
|
-
padding-top: calc(75% - #{$layout-gutter-sm}); /* initial ratio of 1:1*/
|
|
568
|
-
}
|
|
569
|
-
& > *{
|
|
570
|
-
position: absolute;
|
|
571
|
-
top: 0;
|
|
572
|
-
left: 0;
|
|
573
|
-
bottom: 0;
|
|
574
|
-
right: 0;
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.ar-2-3{
|
|
579
|
-
position: relative;
|
|
580
|
-
width: 100%; /* desired width */
|
|
581
|
-
overflow: hidden;
|
|
582
|
-
&:before{
|
|
583
|
-
content: "";
|
|
584
|
-
display: block;
|
|
585
|
-
padding-top: calc(125% - #{$layout-gutter-sm}); /* initial ratio of 1:1*/
|
|
586
|
-
}
|
|
587
|
-
& > *{
|
|
588
|
-
position: absolute;
|
|
589
|
-
top: 0;
|
|
590
|
-
left: 0;
|
|
591
|
-
bottom: 0;
|
|
592
|
-
right: 0;
|
|
593
|
-
}
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
/*** Large screens ***/
|
|
597
|
-
@media only screen and (min-width:1824px) {
|
|
598
|
-
// Dashboard
|
|
599
|
-
.ar-3-2:before {
|
|
600
|
-
padding-top: calc(55% - 5px) !important;
|
|
601
|
-
}
|
|
602
|
-
.ar-2-3:before {
|
|
603
|
-
padding-top: calc(135% - 5px) !important;
|
|
604
|
-
}
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
.v-align-bottom{
|
|
608
|
-
vertical-align: bottom !important;
|
|
609
|
-
}
|
|
610
|
-
.v-align-top{
|
|
611
|
-
vertical-align: top !important;
|
|
612
|
-
}
|
|
613
|
-
.v-align-middle{
|
|
614
|
-
vertical-align: middle !important;
|
|
615
|
-
}
|
|
616
|
-
/* vertical alignment styles */
|
|
617
|
-
.col-top {
|
|
618
|
-
vertical-align:top !important;
|
|
619
|
-
}
|
|
620
|
-
.col-middle {
|
|
621
|
-
vertical-align:middle !important;
|
|
622
|
-
}
|
|
623
|
-
.col-bottom {
|
|
624
|
-
vertical-align:bottom !important;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
/* columns of same height styles
|
|
628
|
-
------------------------------------
|
|
629
|
-
*/
|
|
630
|
-
.container-xs-height {
|
|
631
|
-
display:table;
|
|
632
|
-
padding-left:0px;
|
|
633
|
-
padding-right:0px;
|
|
634
|
-
width: 100%;
|
|
635
|
-
border-collapse: collapse;
|
|
636
|
-
table-layout: fixed;
|
|
637
|
-
}
|
|
638
|
-
.row-xs-height {
|
|
639
|
-
display:table-row;
|
|
640
|
-
}
|
|
641
|
-
.col-xs-height {
|
|
642
|
-
display:table-cell;
|
|
643
|
-
float:none;
|
|
644
|
-
}
|
|
645
|
-
@media (min-width: 768px) {
|
|
646
|
-
.container-sm-height {
|
|
647
|
-
display:table;
|
|
648
|
-
padding-left:0px;
|
|
649
|
-
padding-right:0px;
|
|
650
|
-
width: 100%;
|
|
651
|
-
border-collapse: collapse;
|
|
652
|
-
table-layout: fixed;
|
|
653
|
-
}
|
|
654
|
-
.row-sm-height {
|
|
655
|
-
// display:table-row;
|
|
656
|
-
}
|
|
657
|
-
.col-sm-height {
|
|
658
|
-
// display:table-cell !important;
|
|
659
|
-
// float:none !important;
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
@media (min-width: 992px) {
|
|
663
|
-
.container-md-height {
|
|
664
|
-
display:table;
|
|
665
|
-
padding-left:0px;
|
|
666
|
-
padding-right:0px;
|
|
667
|
-
width: 100%;
|
|
668
|
-
border-collapse: collapse;
|
|
669
|
-
table-layout: fixed;
|
|
670
|
-
}
|
|
671
|
-
.row-md-height {
|
|
672
|
-
display:table-row;
|
|
673
|
-
}
|
|
674
|
-
.col-md-height {
|
|
675
|
-
display:table-cell !important;
|
|
676
|
-
float:none !important;
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
@media (min-width: 1200px) {
|
|
680
|
-
.container-lg-height {
|
|
681
|
-
display:table;
|
|
682
|
-
padding-left:0px;
|
|
683
|
-
padding-right:0px;
|
|
684
|
-
width: 100%;
|
|
685
|
-
border-collapse: collapse;
|
|
686
|
-
table-layout: fixed;
|
|
687
|
-
}
|
|
688
|
-
.row-lg-height {
|
|
689
|
-
display:table-row;
|
|
690
|
-
}
|
|
691
|
-
.col-lg-height {
|
|
692
|
-
display:table-cell !important;
|
|
693
|
-
float:none !important;
|
|
694
|
-
}
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
//IE Fixes
|
|
698
|
-
.windows{
|
|
699
|
-
.d-flex {
|
|
700
|
-
-ms-flex-wrap: wrap;
|
|
701
|
-
}
|
|
702
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
.map-controls {
|
|
2
|
-
position: absolute;
|
|
3
|
-
left: 50px;
|
|
4
|
-
top: 80px;
|
|
5
|
-
z-index: 1;
|
|
6
|
-
}
|
|
7
|
-
.horizontal-app-menu .map-controls {
|
|
8
|
-
left: 15px;
|
|
9
|
-
top: 15px;
|
|
10
|
-
}
|
|
11
|
-
@media (max-width: 480px){
|
|
12
|
-
.map-controls {
|
|
13
|
-
left: 10px;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
ngui-map{
|
|
17
|
-
height: 100% !important;
|
|
18
|
-
}
|