@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.
@@ -6,7 +6,6 @@
6
6
  --------------------------------------------------
7
7
  */
8
8
  @use '../../vars.scss' as *;
9
- @use '../_mixins.scss' as mix;
10
9
  @use 'sass:color' as color;
11
10
 
12
11
  html {
@@ -26,12 +25,81 @@ body {
26
25
  -webkit-font-feature-settings: "kern" 1;
27
26
  -moz-font-feature-settings: "kern" 1;
28
27
  }
29
- /* Headings
30
- ------------------------------------
31
- */
32
- /* Lins and Others
33
- ------------------------------------
34
- */
28
+
29
+
30
+ .color-black {
31
+ color: $Black-Color !important;
32
+ }
33
+
34
+ .color-Dark-Gray-1 {
35
+ color: $Dark-Gray-1 !important;
36
+ }
37
+
38
+ .color-Dark-Gray-2 {
39
+ color: $Dark-Gray-2 !important;
40
+ }
41
+ .color-Red {
42
+ color: $Red !important;
43
+ }
44
+ .color-Green {
45
+ color: $Green !important;
46
+ }
47
+ .color-Light-Gray-1 {
48
+ color: $Light-Gray-1 !important;
49
+ }
50
+ .color-Light-Gray-2 {
51
+ color: $Light-Gray-2 !important;
52
+ }
53
+ .color-Light-Gray-3 {
54
+ color: $Light-Gray-3 !important;
55
+ }
56
+ .color-White {
57
+ color: $White !important;
58
+ }
59
+ .color-Link {
60
+ color: $Link !important;
61
+ }
62
+ .color-dark-link {
63
+ color: $Link-on-dark !important;
64
+ }
65
+
66
+ .b-color-black {
67
+ background-color: $Black-Color !important;
68
+ }
69
+
70
+ .b-color-Dark-Gray-1 {
71
+ background-color: $Dark-Gray-1 !important;
72
+ }
73
+
74
+ .b-color-Dark-Gray-2 {
75
+ background-color: $Dark-Gray-2 !important;
76
+ }
77
+ .b-color-Red {
78
+ background-color: $Red !important;
79
+ }
80
+ .b-color-Green {
81
+ background-color: $Green !important;
82
+ }
83
+ .b-color-Light-Gray-1 {
84
+ background-color: $Light-Gray-1 !important;
85
+ }
86
+ .b-color-Light-Gray-2 {
87
+ background-color: $Light-Gray-2 !important;
88
+ }
89
+ .b-color-Light-Gray-3 {
90
+ background-color: $Light-Gray-3 !important;
91
+ }
92
+ .b-color-White {
93
+ background-color: $White !important;
94
+ }
95
+ .b-color-Link {
96
+ background-color: $Link !important;
97
+ }
98
+ .b-color-dark-link {
99
+ background-color: $Link-on-dark !important;
100
+ }
101
+
102
+
35
103
  a {
36
104
  text-shadow: none !important;
37
105
  color: $color-primary-dark;
@@ -100,317 +168,8 @@ ol {
100
168
  padding-left: 5px;
101
169
  }
102
170
  }
103
- address {
104
- margin-bottom: 0px;
105
- a {
106
- color: $color-master;
107
- }
108
- }
109
- blockquote {
110
- padding: 0 0 0 18px;
111
- border-left: 0;
112
- &:before {
113
- content: "";
114
- font-family: FontAwesome;
115
- content: "\f10d";
116
- margin-right: 13px;
117
- float: left;
118
- }
119
- p {
120
- font-size: 16px;
121
- }
122
- small {
123
- line-height: 29px;
124
- color: #8b91a0;
125
- padding-left: 30px;
126
- &:before {
127
- content: "";
128
- }
129
- }
130
- &.pull-right {
131
- border-right: 0;
132
- &:before {
133
- float: right;
134
- content: "";
135
- font-family: FontAwesome;
136
- content: "\f10d";
137
- margin-left: 13px;
138
- margin-right: 0;
139
- }
140
- small {
141
- padding-right: 30px;
142
- &:after {
143
- content: "";
144
- }
145
- }
146
- }
147
- }
148
- hr {
149
- border-color: $color-master-light;
150
- &.double {
151
- border-width: 2px;
152
- }
153
- &.dotted {
154
- border-style: dotted none none;
155
- }
156
- }
157
-
158
- /* Font Sizes
159
- ------------------------------------
160
- */
161
-
162
- .small-text {
163
- font-size: 12px !important;
164
- }
165
- .normal-text {
166
- font-size: 13px !important;
167
- }
168
- .large-text {
169
- font-size: 15px !important;
170
- }
171
171
 
172
- /* Font Weights
173
- ------------------------------------
174
- */
175
-
176
- .normal {
177
- font-weight: normal;
178
- }
179
- .semi-bold {
180
- font-weight: 400 !important;
181
- }
182
- .bold {
183
- font-weight: bold !important;
184
- }
185
- .light {
186
- font-weight: 300 !important;
187
- }
188
172
 
189
- /* Misc
190
- ------------------------------------
191
- */
192
-
193
- .logo {
194
- margin: 18px 14px;
195
- }
196
- .all-caps {
197
- text-transform: uppercase;
198
- }
199
- .muted {
200
- color: color.adjust($color-master, $lightness: 50%);
201
- }
202
- .hint-text {
203
- opacity: 0.7;
204
- }
205
- .no-decoration {
206
- text-decoration: none !important;
207
- }
208
- /* Monochrome Colors
209
- ------------------------------------
210
- */
211
-
212
- .bg-master {
213
- background-color: $color-master;
214
- }
215
- .bg-master-light {
216
- background-color: $color-master-light;
217
- }
218
- .bg-master-lighter {
219
- background-color: $color-master-lighter;
220
- }
221
- .bg-master-lightest {
222
- background-color: $color-master-lightest;
223
- }
224
- .bg-master-dark {
225
- background-color: $color-master-dark;
226
- }
227
- .bg-master-darker {
228
- background-color: $color-master-darker;
229
- }
230
- .bg-master-darkest {
231
- background-color: $color-master-darkest;
232
- }
233
-
234
- /* Contextual Colors
235
- ------------------------------------
236
- */
237
-
238
- /* Primary
239
- ------------------------------------
240
- */
241
- .bg-primary {
242
- background-color: $color-primary !important;
243
- }
244
- .bg-primary-dark {
245
- background-color: $color-primary-dark;
246
- }
247
- .bg-primary-darker {
248
- background-color: $color-primary-darker;
249
- }
250
- .bg-primary-light {
251
- background-color: $color-primary-light;
252
- }
253
- .bg-primary-lighter {
254
- background-color: $color-primary-lighter;
255
- }
256
-
257
- /* Complete
258
- ------------------------------------
259
- */
260
- .bg-complete {
261
- background-color: $color-complete;
262
- }
263
- .bg-complete-dark {
264
- background-color: $color-complete-dark;
265
- }
266
- .bg-complete-darker {
267
- background-color: $color-complete-darker;
268
- }
269
- .bg-complete-light {
270
- background-color: $color-complete-light;
271
- }
272
- .bg-complete-lighter {
273
- background-color: $color-complete-lighter;
274
- }
275
-
276
- /* Success
277
- ------------------------------------
278
- */
279
- .bg-success {
280
- background-color: $color-success !important;
281
- }
282
- .bg-success-dark {
283
- background-color: $color-success-dark;
284
- }
285
- .bg-success-darker {
286
- background-color: $color-success-darker;
287
- }
288
- .bg-success-light {
289
- background-color: $color-success-light;
290
- }
291
- .bg-success-lighter {
292
- background-color: $color-success-lighter;
293
- }
294
-
295
- /* Info
296
- ------------------------------------
297
- */
298
- .bg-info {
299
- background-color: $color-info !important;
300
- }
301
- .bg-info-dark {
302
- background-color: $color-info-dark;
303
- }
304
- .bg-info-darker {
305
- background-color: $color-info-darker;
306
- }
307
- .bg-info-light {
308
- background-color: $color-info-light;
309
- }
310
- .bg-info-lighter {
311
- background-color: $color-info-lighter;
312
- }
313
-
314
- /* Danger
315
- ------------------------------------
316
- */
317
- .bg-danger {
318
- background-color: $color-danger !important;
319
- }
320
- .bg-danger-dark {
321
- background-color: $color-danger-dark;
322
- }
323
- .bg-danger-darker {
324
- background-color: $color-danger-darker;
325
- }
326
- .bg-danger-light {
327
- background-color: $color-danger-light;
328
- }
329
- .bg-danger-lighter {
330
- background-color: $color-danger-lighter;
331
- }
332
-
333
- /* Warning
334
- ------------------------------------
335
- */
336
- .bg-warning {
337
- background-color: $color-warning !important;
338
- }
339
- .bg-warning-dark {
340
- background-color: $color-warning-dark;
341
- }
342
- .bg-warning-darker {
343
- background-color: $color-warning-darker !important;
344
- }
345
- .bg-warning-light {
346
- background-color: $color-warning-light !important;
347
- }
348
- .bg-warning-lighter {
349
- background-color: $color-warning-lighter;
350
- }
351
-
352
- /* More Color Options
353
- ------------------------------------
354
- */
355
-
356
- /* Menu
357
- ------------------------------------
358
- */
359
- .bg-menu-dark {
360
- background-color: $color-menu-dark;
361
- }
362
- .bg-menu {
363
- background-color: $color-menu;
364
- }
365
- .bg-menu-light {
366
- background-color: $color-menu-light;
367
- }
368
-
369
- /* Gradients
370
- ------------------------------------
371
- */
372
- .gradient-grey {
373
- background: -webkit-linear-gradient(
374
- top,
375
- rgba(0, 0, 0, 0) 0%,
376
- rgba(0, 0, 0, 0.8) 75%
377
- );
378
- background: linear-gradient(
379
- to bottom,
380
- rgba(0, 0, 0, 0) 0%,
381
- rgba(0, 0, 0, 0.8) 75%
382
- );
383
- }
384
- .gradient-black {
385
- background: -webkit-linear-gradient(
386
- top,
387
- rgba(0, 0, 0, 0) 0%,
388
- rgba(0, 0, 0, 0.8) 75%
389
- );
390
- background: linear-gradient(
391
- to bottom,
392
- rgba(0, 0, 0, 0) 0%,
393
- rgba(0, 0, 0, 0.8) 75%
394
- );
395
- }
396
-
397
- /* Other Colors
398
- ------------------------------------
399
- */
400
- .bg-white {
401
- background-color: #fff;
402
- }
403
- .bg-transparent {
404
- background-color: transparent !important;
405
- }
406
-
407
- /* Text Colors */
408
- .link {
409
- opacity: 0.7;
410
- &:hover {
411
- opacity: 1;
412
- }
413
- }
414
173
  .text-master {
415
174
  color: $color-master !important;
416
175
  }
@@ -460,182 +219,6 @@ hr {
460
219
  text-align: center !important;
461
220
  }
462
221
 
463
- /* Labels
464
- ------------------------------------
465
- */
466
-
467
- .label {
468
- padding: 3px 9px;
469
- font-size: 11px;
470
- line-height: 1;
471
- text-shadow: none;
472
- background-color: $color-master-light;
473
- font-weight: 600;
474
- color: $color-master;
475
- border-radius: 0.25em;
476
- }
477
- .label-success {
478
- background-color: $color-success;
479
- color: #fff;
480
- }
481
- .label-warning {
482
- background-color: $color-warning;
483
- color: #fff;
484
- }
485
- .label-important,
486
- .label-danger {
487
- background-color: $color-danger;
488
- color: #fff;
489
- }
490
- .label-info {
491
- background-color: $color-complete;
492
- color: #fff;
493
- }
494
- .label-inverse {
495
- background-color: $color-complete-dark;
496
- color: #fff;
497
- }
498
- .label-white {
499
- background-color: #fff;
500
- color: $color-master;
501
- }
502
-
503
- /* Font Sizes
504
- ------------------------------------
505
- */
506
- .fs-10 {
507
- font-size: 10px !important;
508
- }
509
- .fs-11 {
510
- font-size: 10.5px !important;
511
- }
512
- .fs-12 {
513
- font-size: 12px !important;
514
- }
515
- .fs-13 {
516
- font-size: 13px !important;
517
- }
518
- .fs-14 {
519
- font-size: 14px !important;
520
- }
521
- .fs-15 {
522
- font-size: 15px !important;
523
- }
524
- .fs-16 {
525
- font-size: 16px !important;
526
- }
527
-
528
- /* Line-heights
529
- ------------------------------------
530
- */
531
- .lh-normal {
532
- line-height: normal;
533
- }
534
- .lh-10 {
535
- line-height: 10px;
536
- }
537
- .lh-11 {
538
- line-height: 11px;
539
- }
540
- .lh-12 {
541
- line-height: 12px;
542
- }
543
- .lh-13 {
544
- line-height: 13px;
545
- }
546
- .lh-14 {
547
- line-height: 14px;
548
- }
549
- .lh-15 {
550
- line-height: 15px;
551
- }
552
- .lh-16 {
553
- line-height: 16px;
554
- }
555
-
556
- /* Font Faces
557
- ------------------------------------
558
- */
559
-
560
- .font-arial {
561
- font-family: Arial, sans-serif !important;
562
- }
563
- .font-montserrat {
564
- font-family: mMontserrat !important;
565
- }
566
- .font-georgia {
567
- font-family: Georgia !important;
568
- }
569
- .font-heading {
570
- font-family: $base-font-family;
571
- }
572
-
573
- /* Wells
574
- ------------------------------------
575
- */
576
- .well {
577
- background-color: $color-master-light;
578
- -webkit-border-radius: 3px;
579
- -moz-border-radius: 3px;
580
- border-radius: 3px;
581
- -webkit-box-shadow: none !important;
582
- -moz-box-shadow: none !important;
583
- box-shadow: none !important;
584
- border: none;
585
- background-image: none;
586
- &.well-large {
587
- padding: 24px;
588
- width: auto;
589
- }
590
- &.well-small {
591
- padding: 13px;
592
- width: auto;
593
- }
594
- &.green {
595
- background-color: $color-complete;
596
- color: $color-white;
597
- border: none;
598
- }
599
- }
600
- .overflow-ellipsis {
601
- text-overflow: ellipsis;
602
- overflow: hidden;
603
- white-space: nowrap;
604
- }
605
-
606
- .jumbotron {
607
- @include mix.border-radius(0);
608
- p {
609
- font-size: 14px;
610
- font-weight: normal;
611
- margin-bottom: inherit;
612
- &.small {
613
- font-size: 85%;
614
- }
615
- }
616
- }
617
-
618
- /* Responsive Handlers : Typo
619
- ------------------------------------
620
- */
621
-
622
- @media (max-width: 1400px) {
623
- body,
624
- p {
625
- font-size: 13px;
626
- line-height: 20px;
627
- }
628
-
629
- small,
630
- .small {
631
- font-size: 89%;
632
- line-height: 17px;
633
- }
634
- }
635
-
636
- /* For Windows : Fixes
637
- ------------------------------------
638
- */
639
222
  .windows {
640
223
  body,
641
224
  p {