@coreui/coreui 4.0.4 → 4.1.1
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 +5 -8
- package/dist/css/coreui-grid.css +254 -205
- package/dist/css/coreui-grid.css.map +1 -1
- package/dist/css/coreui-grid.min.css +2 -2
- package/dist/css/coreui-grid.min.css.map +1 -1
- package/dist/css/coreui-grid.rtl.css +411 -362
- package/dist/css/coreui-grid.rtl.css.map +1 -1
- package/dist/css/coreui-grid.rtl.min.css +3 -3
- package/dist/css/coreui-grid.rtl.min.css.map +1 -1
- package/dist/css/coreui-reboot.css +63 -8
- package/dist/css/coreui-reboot.css.map +1 -1
- package/dist/css/coreui-reboot.min.css +2 -2
- package/dist/css/coreui-reboot.min.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.css +64 -9
- package/dist/css/coreui-reboot.rtl.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.min.css +3 -3
- package/dist/css/coreui-reboot.rtl.min.css.map +1 -1
- package/dist/css/coreui-utilities.css +181 -81
- package/dist/css/coreui-utilities.css.map +1 -1
- package/dist/css/coreui-utilities.min.css +2 -2
- package/dist/css/coreui-utilities.min.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.css +380 -280
- package/dist/css/coreui-utilities.rtl.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.min.css +3 -3
- package/dist/css/coreui-utilities.rtl.min.css.map +1 -1
- package/dist/css/coreui.css +712 -345
- package/dist/css/coreui.css.map +1 -1
- package/dist/css/coreui.min.css +2 -2
- package/dist/css/coreui.min.css.map +1 -1
- package/dist/css/coreui.rtl.css +893 -541
- package/dist/css/coreui.rtl.css.map +1 -1
- package/dist/css/coreui.rtl.min.css +3 -3
- package/dist/css/coreui.rtl.min.css.map +1 -1
- package/dist/js/coreui.bundle.js +855 -746
- package/dist/js/coreui.bundle.js.map +1 -1
- package/dist/js/coreui.bundle.min.js +3 -3
- package/dist/js/coreui.bundle.min.js.map +1 -1
- package/dist/js/coreui.esm.js +708 -644
- package/dist/js/coreui.esm.js.map +1 -1
- package/dist/js/coreui.esm.min.js +3 -3
- package/dist/js/coreui.esm.min.js.map +1 -1
- package/dist/js/coreui.js +718 -656
- package/dist/js/coreui.js.map +1 -1
- package/dist/js/coreui.min.js +3 -3
- package/dist/js/coreui.min.js.map +1 -1
- package/js/dist/alert.js +82 -49
- package/js/dist/alert.js.map +1 -1
- package/js/dist/base-component.js +26 -18
- package/js/dist/base-component.js.map +1 -1
- package/js/dist/button.js +23 -13
- package/js/dist/button.js.map +1 -1
- package/js/dist/carousel.js +95 -50
- package/js/dist/carousel.js.map +1 -1
- package/js/dist/collapse.js +125 -139
- package/js/dist/collapse.js.map +1 -1
- package/js/dist/dom/data.js +6 -6
- package/js/dist/dom/data.js.map +1 -1
- package/js/dist/dom/event-handler.js +15 -6
- package/js/dist/dom/event-handler.js.map +1 -1
- package/js/dist/dom/manipulator.js +7 -7
- package/js/dist/dom/manipulator.js.map +1 -1
- package/js/dist/dom/selector-engine.js +74 -9
- package/js/dist/dom/selector-engine.js.map +1 -1
- package/js/dist/dropdown.js +125 -112
- package/js/dist/dropdown.js.map +1 -1
- package/js/dist/modal.js +270 -93
- package/js/dist/modal.js.map +1 -1
- package/js/dist/offcanvas.js +231 -62
- package/js/dist/offcanvas.js.map +1 -1
- package/js/dist/popover.js +29 -59
- package/js/dist/popover.js.map +1 -1
- package/js/dist/scrollspy.js +45 -35
- package/js/dist/scrollspy.js.map +1 -1
- package/js/dist/tab.js +45 -23
- package/js/dist/tab.js.map +1 -1
- package/js/dist/toast.js +132 -34
- package/js/dist/toast.js.map +1 -1
- package/js/dist/tooltip.js +127 -109
- package/js/dist/tooltip.js.map +1 -1
- package/js/src/alert.js +21 -47
- package/js/src/base-component.js +3 -3
- package/js/src/button.js +1 -1
- package/js/src/carousel.js +10 -4
- package/js/src/collapse.js +66 -119
- package/js/src/dom/data.js +1 -1
- package/js/src/dom/event-handler.js +1 -2
- package/js/src/dom/manipulator.js +3 -3
- package/js/src/dom/selector-engine.js +18 -1
- package/js/src/dropdown.js +53 -68
- package/js/src/modal.js +24 -35
- package/js/src/navigation.js +6 -4
- package/js/src/offcanvas.js +16 -18
- package/js/src/popover.js +7 -49
- package/js/src/scrollspy.js +1 -1
- package/js/src/sidebar.js +23 -27
- package/js/src/tab.js +1 -1
- package/js/src/toast.js +11 -11
- package/js/src/tooltip.js +66 -50
- package/js/src/util/backdrop.js +6 -5
- package/js/src/util/component-functions.js +34 -0
- package/js/src/util/focustrap.js +105 -0
- package/js/src/util/index.js +39 -11
- package/js/src/util/sanitizer.js +21 -22
- package/js/src/util/scrollbar.js +1 -1
- package/package.json +54 -55
- package/scss/_buttons.scss +1 -2
- package/scss/_card.scss +2 -1
- package/scss/_dropdown.scss +1 -1
- package/scss/_functions.scss +51 -12
- package/scss/_grid.scss +0 -23
- package/scss/_helpers.scss +2 -0
- package/scss/_mixins.scss +1 -0
- package/scss/_modal.scss +2 -12
- package/scss/_nav.scss +1 -2
- package/scss/_navbar.scss +30 -1
- package/scss/_offcanvas.scss +6 -2
- package/scss/_placeholders.scss +51 -0
- package/scss/_reboot.scss +12 -8
- package/scss/_root.scss +36 -7
- package/scss/_tables.scss +9 -5
- package/scss/_toasts.scss +2 -2
- package/scss/_transitions.scss +6 -0
- package/scss/_utilities.scss +31 -8
- package/scss/_variables.scss +188 -13
- package/scss/coreui-grid.rtl.scss +1 -1
- package/scss/coreui-grid.scss +3 -1
- package/scss/coreui-reboot.rtl.scss +1 -1
- package/scss/coreui-reboot.scss +2 -4
- package/scss/coreui-utilities.rtl.scss +1 -1
- package/scss/coreui-utilities.scss +1 -1
- package/scss/coreui.rtl.scss +1 -1
- package/scss/coreui.scss +2 -1
- package/scss/forms/_form-control.scss +1 -1
- package/scss/forms/_form-select.scss +2 -0
- package/scss/helpers/_stacks.scss +15 -0
- package/scss/helpers/_vr.scss +8 -0
- package/scss/mixins/_backdrop.scss +14 -0
- package/scss/mixins/_grid.scss +26 -7
- package/scss/mixins/_ltr-rtl.scss +21 -0
- package/scss/mixins/_reset-text.scss +1 -1
- package/scss/mixins/_utilities.scss +27 -39
- package/scss/mixins/_visually-hidden.scss +1 -1
- package/scss/sidebar/_sidebar-nav.scss +1 -0
- package/scss/sidebar/_sidebar.scss +17 -17
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
3
|
* CoreUI - HTML, CSS, and JavaScript UI Components Library
|
|
4
|
-
* @version v4.
|
|
4
|
+
* @version v4.1.1
|
|
5
5
|
* @link https://coreui.io/
|
|
6
6
|
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
|
|
7
7
|
* License MIT (https://coreui.io/license/)
|
|
8
8
|
*/
|
|
9
9
|
/*!
|
|
10
10
|
* CoreUI - HTML, CSS, and JavaScript UI Components Library
|
|
11
|
-
* @version v4.
|
|
11
|
+
* @version v4.1.1
|
|
12
12
|
* @link https://coreui.io/
|
|
13
13
|
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
|
|
14
14
|
* License MIT (https://coreui.io/license/)
|
|
@@ -97,15 +97,15 @@
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
.ratio-4x3 {
|
|
100
|
-
--cui-aspect-ratio:
|
|
100
|
+
--cui-aspect-ratio: 75%;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
.ratio-16x9 {
|
|
104
|
-
--cui-aspect-ratio:
|
|
104
|
+
--cui-aspect-ratio: 56.25%;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
.ratio-21x9 {
|
|
108
|
-
--cui-aspect-ratio:
|
|
108
|
+
--cui-aspect-ratio: 42.8571428571%;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
.fixed-top {
|
|
@@ -165,6 +165,20 @@
|
|
|
165
165
|
z-index: 1020;
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
|
+
.hstack {
|
|
169
|
+
display: flex;
|
|
170
|
+
flex-direction: row;
|
|
171
|
+
align-items: center;
|
|
172
|
+
align-self: stretch;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.vstack {
|
|
176
|
+
display: flex;
|
|
177
|
+
flex: 1 1 auto;
|
|
178
|
+
flex-direction: column;
|
|
179
|
+
align-self: stretch;
|
|
180
|
+
}
|
|
181
|
+
|
|
168
182
|
.visually-hidden,
|
|
169
183
|
.visually-hidden-focusable:not(:focus):not(:focus-within) {
|
|
170
184
|
position: absolute !important;
|
|
@@ -194,6 +208,15 @@
|
|
|
194
208
|
white-space: nowrap;
|
|
195
209
|
}
|
|
196
210
|
|
|
211
|
+
.vr {
|
|
212
|
+
display: inline-block;
|
|
213
|
+
align-self: stretch;
|
|
214
|
+
width: 1px;
|
|
215
|
+
min-height: 1em;
|
|
216
|
+
background-color: currentColor;
|
|
217
|
+
opacity: 0.25;
|
|
218
|
+
}
|
|
219
|
+
|
|
197
220
|
.align-baseline {
|
|
198
221
|
vertical-align: baseline !important;
|
|
199
222
|
}
|
|
@@ -219,11 +242,11 @@
|
|
|
219
242
|
}
|
|
220
243
|
|
|
221
244
|
.float-start {
|
|
222
|
-
float:
|
|
245
|
+
float: left !important;
|
|
223
246
|
}
|
|
224
247
|
|
|
225
248
|
.float-end {
|
|
226
|
-
float:
|
|
249
|
+
float: right !important;
|
|
227
250
|
}
|
|
228
251
|
|
|
229
252
|
.float-none {
|
|
@@ -419,11 +442,11 @@
|
|
|
419
442
|
}
|
|
420
443
|
|
|
421
444
|
.border-end {
|
|
422
|
-
border-
|
|
445
|
+
border-right: 1px solid var(--cui-border-color, #d8dbe0) !important;
|
|
423
446
|
}
|
|
424
447
|
|
|
425
448
|
.border-end-0 {
|
|
426
|
-
border-
|
|
449
|
+
border-right: 0 !important;
|
|
427
450
|
}
|
|
428
451
|
|
|
429
452
|
.border-bottom {
|
|
@@ -435,191 +458,191 @@
|
|
|
435
458
|
}
|
|
436
459
|
|
|
437
460
|
.border-start {
|
|
438
|
-
border-
|
|
461
|
+
border-left: 1px solid var(--cui-border-color, #d8dbe0) !important;
|
|
439
462
|
}
|
|
440
463
|
|
|
441
464
|
.border-start-0 {
|
|
442
|
-
border-
|
|
465
|
+
border-left: 0 !important;
|
|
443
466
|
}
|
|
444
467
|
|
|
445
468
|
.border-primary {
|
|
446
|
-
border-color:
|
|
469
|
+
border-color: #321fdb !important;
|
|
447
470
|
}
|
|
448
471
|
|
|
449
472
|
.border-secondary {
|
|
450
|
-
border-color:
|
|
473
|
+
border-color: #9da5b1 !important;
|
|
451
474
|
}
|
|
452
475
|
|
|
453
476
|
.border-success {
|
|
454
|
-
border-color:
|
|
477
|
+
border-color: #2eb85c !important;
|
|
455
478
|
}
|
|
456
479
|
|
|
457
480
|
.border-info {
|
|
458
|
-
border-color:
|
|
481
|
+
border-color: #39f !important;
|
|
459
482
|
}
|
|
460
483
|
|
|
461
484
|
.border-warning {
|
|
462
|
-
border-color:
|
|
485
|
+
border-color: #f9b115 !important;
|
|
463
486
|
}
|
|
464
487
|
|
|
465
488
|
.border-danger {
|
|
466
|
-
border-color:
|
|
489
|
+
border-color: #e55353 !important;
|
|
467
490
|
}
|
|
468
491
|
|
|
469
492
|
.border-light {
|
|
470
|
-
border-color:
|
|
493
|
+
border-color: #ebedef !important;
|
|
471
494
|
}
|
|
472
495
|
|
|
473
496
|
.border-dark {
|
|
474
|
-
border-color:
|
|
497
|
+
border-color: #4f5d73 !important;
|
|
475
498
|
}
|
|
476
499
|
|
|
477
500
|
.border-white {
|
|
478
|
-
border-color:
|
|
501
|
+
border-color: #fff !important;
|
|
479
502
|
}
|
|
480
503
|
|
|
481
504
|
.border-top-primary {
|
|
482
|
-
border-top-color:
|
|
505
|
+
border-top-color: #321fdb !important;
|
|
483
506
|
}
|
|
484
507
|
|
|
485
508
|
.border-top-secondary {
|
|
486
|
-
border-top-color:
|
|
509
|
+
border-top-color: #9da5b1 !important;
|
|
487
510
|
}
|
|
488
511
|
|
|
489
512
|
.border-top-success {
|
|
490
|
-
border-top-color:
|
|
513
|
+
border-top-color: #2eb85c !important;
|
|
491
514
|
}
|
|
492
515
|
|
|
493
516
|
.border-top-info {
|
|
494
|
-
border-top-color:
|
|
517
|
+
border-top-color: #39f !important;
|
|
495
518
|
}
|
|
496
519
|
|
|
497
520
|
.border-top-warning {
|
|
498
|
-
border-top-color:
|
|
521
|
+
border-top-color: #f9b115 !important;
|
|
499
522
|
}
|
|
500
523
|
|
|
501
524
|
.border-top-danger {
|
|
502
|
-
border-top-color:
|
|
525
|
+
border-top-color: #e55353 !important;
|
|
503
526
|
}
|
|
504
527
|
|
|
505
528
|
.border-top-light {
|
|
506
|
-
border-top-color:
|
|
529
|
+
border-top-color: #ebedef !important;
|
|
507
530
|
}
|
|
508
531
|
|
|
509
532
|
.border-top-dark {
|
|
510
|
-
border-top-color:
|
|
533
|
+
border-top-color: #4f5d73 !important;
|
|
511
534
|
}
|
|
512
535
|
|
|
513
536
|
.border-top-white {
|
|
514
|
-
border-top-color:
|
|
537
|
+
border-top-color: #fff !important;
|
|
515
538
|
}
|
|
516
539
|
|
|
517
540
|
.border-end-primary {
|
|
518
|
-
border-
|
|
541
|
+
border-right-color: #321fdb !important;
|
|
519
542
|
}
|
|
520
543
|
|
|
521
544
|
.border-end-secondary {
|
|
522
|
-
border-
|
|
545
|
+
border-right-color: #9da5b1 !important;
|
|
523
546
|
}
|
|
524
547
|
|
|
525
548
|
.border-end-success {
|
|
526
|
-
border-
|
|
549
|
+
border-right-color: #2eb85c !important;
|
|
527
550
|
}
|
|
528
551
|
|
|
529
552
|
.border-end-info {
|
|
530
|
-
border-
|
|
553
|
+
border-right-color: #39f !important;
|
|
531
554
|
}
|
|
532
555
|
|
|
533
556
|
.border-end-warning {
|
|
534
|
-
border-
|
|
557
|
+
border-right-color: #f9b115 !important;
|
|
535
558
|
}
|
|
536
559
|
|
|
537
560
|
.border-end-danger {
|
|
538
|
-
border-
|
|
561
|
+
border-right-color: #e55353 !important;
|
|
539
562
|
}
|
|
540
563
|
|
|
541
564
|
.border-end-light {
|
|
542
|
-
border-
|
|
565
|
+
border-right-color: #ebedef !important;
|
|
543
566
|
}
|
|
544
567
|
|
|
545
568
|
.border-end-dark {
|
|
546
|
-
border-
|
|
569
|
+
border-right-color: #4f5d73 !important;
|
|
547
570
|
}
|
|
548
571
|
|
|
549
572
|
.border-end-white {
|
|
550
|
-
border-
|
|
573
|
+
border-right-color: #fff !important;
|
|
551
574
|
}
|
|
552
575
|
|
|
553
576
|
.border-bottom-primary {
|
|
554
|
-
border-bottom-color:
|
|
577
|
+
border-bottom-color: #321fdb !important;
|
|
555
578
|
}
|
|
556
579
|
|
|
557
580
|
.border-bottom-secondary {
|
|
558
|
-
border-bottom-color:
|
|
581
|
+
border-bottom-color: #9da5b1 !important;
|
|
559
582
|
}
|
|
560
583
|
|
|
561
584
|
.border-bottom-success {
|
|
562
|
-
border-bottom-color:
|
|
585
|
+
border-bottom-color: #2eb85c !important;
|
|
563
586
|
}
|
|
564
587
|
|
|
565
588
|
.border-bottom-info {
|
|
566
|
-
border-bottom-color:
|
|
589
|
+
border-bottom-color: #39f !important;
|
|
567
590
|
}
|
|
568
591
|
|
|
569
592
|
.border-bottom-warning {
|
|
570
|
-
border-bottom-color:
|
|
593
|
+
border-bottom-color: #f9b115 !important;
|
|
571
594
|
}
|
|
572
595
|
|
|
573
596
|
.border-bottom-danger {
|
|
574
|
-
border-bottom-color:
|
|
597
|
+
border-bottom-color: #e55353 !important;
|
|
575
598
|
}
|
|
576
599
|
|
|
577
600
|
.border-bottom-light {
|
|
578
|
-
border-bottom-color:
|
|
601
|
+
border-bottom-color: #ebedef !important;
|
|
579
602
|
}
|
|
580
603
|
|
|
581
604
|
.border-bottom-dark {
|
|
582
|
-
border-bottom-color:
|
|
605
|
+
border-bottom-color: #4f5d73 !important;
|
|
583
606
|
}
|
|
584
607
|
|
|
585
608
|
.border-bottom-white {
|
|
586
|
-
border-bottom-color:
|
|
609
|
+
border-bottom-color: #fff !important;
|
|
587
610
|
}
|
|
588
611
|
|
|
589
612
|
.border-start-primary {
|
|
590
|
-
border-
|
|
613
|
+
border-left-color: #321fdb !important;
|
|
591
614
|
}
|
|
592
615
|
|
|
593
616
|
.border-start-secondary {
|
|
594
|
-
border-
|
|
617
|
+
border-left-color: #9da5b1 !important;
|
|
595
618
|
}
|
|
596
619
|
|
|
597
620
|
.border-start-success {
|
|
598
|
-
border-
|
|
621
|
+
border-left-color: #2eb85c !important;
|
|
599
622
|
}
|
|
600
623
|
|
|
601
624
|
.border-start-info {
|
|
602
|
-
border-
|
|
625
|
+
border-left-color: #39f !important;
|
|
603
626
|
}
|
|
604
627
|
|
|
605
628
|
.border-start-warning {
|
|
606
|
-
border-
|
|
629
|
+
border-left-color: #f9b115 !important;
|
|
607
630
|
}
|
|
608
631
|
|
|
609
632
|
.border-start-danger {
|
|
610
|
-
border-
|
|
633
|
+
border-left-color: #e55353 !important;
|
|
611
634
|
}
|
|
612
635
|
|
|
613
636
|
.border-start-light {
|
|
614
|
-
border-
|
|
637
|
+
border-left-color: #ebedef !important;
|
|
615
638
|
}
|
|
616
639
|
|
|
617
640
|
.border-start-dark {
|
|
618
|
-
border-
|
|
641
|
+
border-left-color: #4f5d73 !important;
|
|
619
642
|
}
|
|
620
643
|
|
|
621
644
|
.border-start-white {
|
|
622
|
-
border-
|
|
645
|
+
border-left-color: #fff !important;
|
|
623
646
|
}
|
|
624
647
|
|
|
625
648
|
.border-1 {
|
|
@@ -663,23 +686,23 @@
|
|
|
663
686
|
}
|
|
664
687
|
|
|
665
688
|
.border-end-1 {
|
|
666
|
-
border-
|
|
689
|
+
border-right-width: 1px !important;
|
|
667
690
|
}
|
|
668
691
|
|
|
669
692
|
.border-end-2 {
|
|
670
|
-
border-
|
|
693
|
+
border-right-width: 2px !important;
|
|
671
694
|
}
|
|
672
695
|
|
|
673
696
|
.border-end-3 {
|
|
674
|
-
border-
|
|
697
|
+
border-right-width: 3px !important;
|
|
675
698
|
}
|
|
676
699
|
|
|
677
700
|
.border-end-4 {
|
|
678
|
-
border-
|
|
701
|
+
border-right-width: 4px !important;
|
|
679
702
|
}
|
|
680
703
|
|
|
681
704
|
.border-end-5 {
|
|
682
|
-
border-
|
|
705
|
+
border-right-width: 5px !important;
|
|
683
706
|
}
|
|
684
707
|
|
|
685
708
|
.border-bottom-1 {
|
|
@@ -703,23 +726,23 @@
|
|
|
703
726
|
}
|
|
704
727
|
|
|
705
728
|
.border-start-1 {
|
|
706
|
-
border-
|
|
729
|
+
border-left-width: 1px !important;
|
|
707
730
|
}
|
|
708
731
|
|
|
709
732
|
.border-start-2 {
|
|
710
|
-
border-
|
|
733
|
+
border-left-width: 2px !important;
|
|
711
734
|
}
|
|
712
735
|
|
|
713
736
|
.border-start-3 {
|
|
714
|
-
border-
|
|
737
|
+
border-left-width: 3px !important;
|
|
715
738
|
}
|
|
716
739
|
|
|
717
740
|
.border-start-4 {
|
|
718
|
-
border-
|
|
741
|
+
border-left-width: 4px !important;
|
|
719
742
|
}
|
|
720
743
|
|
|
721
744
|
.border-start-5 {
|
|
722
|
-
border-
|
|
745
|
+
border-left-width: 5px !important;
|
|
723
746
|
}
|
|
724
747
|
|
|
725
748
|
.w-25 {
|
|
@@ -1109,31 +1132,31 @@
|
|
|
1109
1132
|
}
|
|
1110
1133
|
|
|
1111
1134
|
.me-0 {
|
|
1112
|
-
margin-
|
|
1135
|
+
margin-right: 0 !important;
|
|
1113
1136
|
}
|
|
1114
1137
|
|
|
1115
1138
|
.me-1 {
|
|
1116
|
-
margin-
|
|
1139
|
+
margin-right: 0.25rem !important;
|
|
1117
1140
|
}
|
|
1118
1141
|
|
|
1119
1142
|
.me-2 {
|
|
1120
|
-
margin-
|
|
1143
|
+
margin-right: 0.5rem !important;
|
|
1121
1144
|
}
|
|
1122
1145
|
|
|
1123
1146
|
.me-3 {
|
|
1124
|
-
margin-
|
|
1147
|
+
margin-right: 1rem !important;
|
|
1125
1148
|
}
|
|
1126
1149
|
|
|
1127
1150
|
.me-4 {
|
|
1128
|
-
margin-
|
|
1151
|
+
margin-right: 1.5rem !important;
|
|
1129
1152
|
}
|
|
1130
1153
|
|
|
1131
1154
|
.me-5 {
|
|
1132
|
-
margin-
|
|
1155
|
+
margin-right: 3rem !important;
|
|
1133
1156
|
}
|
|
1134
1157
|
|
|
1135
1158
|
.me-auto {
|
|
1136
|
-
margin-
|
|
1159
|
+
margin-right: auto !important;
|
|
1137
1160
|
}
|
|
1138
1161
|
|
|
1139
1162
|
.mb-0 {
|
|
@@ -1165,31 +1188,31 @@
|
|
|
1165
1188
|
}
|
|
1166
1189
|
|
|
1167
1190
|
.ms-0 {
|
|
1168
|
-
margin-
|
|
1191
|
+
margin-left: 0 !important;
|
|
1169
1192
|
}
|
|
1170
1193
|
|
|
1171
1194
|
.ms-1 {
|
|
1172
|
-
margin-
|
|
1195
|
+
margin-left: 0.25rem !important;
|
|
1173
1196
|
}
|
|
1174
1197
|
|
|
1175
1198
|
.ms-2 {
|
|
1176
|
-
margin-
|
|
1199
|
+
margin-left: 0.5rem !important;
|
|
1177
1200
|
}
|
|
1178
1201
|
|
|
1179
1202
|
.ms-3 {
|
|
1180
|
-
margin-
|
|
1203
|
+
margin-left: 1rem !important;
|
|
1181
1204
|
}
|
|
1182
1205
|
|
|
1183
1206
|
.ms-4 {
|
|
1184
|
-
margin-
|
|
1207
|
+
margin-left: 1.5rem !important;
|
|
1185
1208
|
}
|
|
1186
1209
|
|
|
1187
1210
|
.ms-5 {
|
|
1188
|
-
margin-
|
|
1211
|
+
margin-left: 3rem !important;
|
|
1189
1212
|
}
|
|
1190
1213
|
|
|
1191
1214
|
.ms-auto {
|
|
1192
|
-
margin-
|
|
1215
|
+
margin-left: auto !important;
|
|
1193
1216
|
}
|
|
1194
1217
|
|
|
1195
1218
|
.p-0 {
|
|
@@ -1301,27 +1324,27 @@
|
|
|
1301
1324
|
}
|
|
1302
1325
|
|
|
1303
1326
|
.pe-0 {
|
|
1304
|
-
padding-
|
|
1327
|
+
padding-right: 0 !important;
|
|
1305
1328
|
}
|
|
1306
1329
|
|
|
1307
1330
|
.pe-1 {
|
|
1308
|
-
padding-
|
|
1331
|
+
padding-right: 0.25rem !important;
|
|
1309
1332
|
}
|
|
1310
1333
|
|
|
1311
1334
|
.pe-2 {
|
|
1312
|
-
padding-
|
|
1335
|
+
padding-right: 0.5rem !important;
|
|
1313
1336
|
}
|
|
1314
1337
|
|
|
1315
1338
|
.pe-3 {
|
|
1316
|
-
padding-
|
|
1339
|
+
padding-right: 1rem !important;
|
|
1317
1340
|
}
|
|
1318
1341
|
|
|
1319
1342
|
.pe-4 {
|
|
1320
|
-
padding-
|
|
1343
|
+
padding-right: 1.5rem !important;
|
|
1321
1344
|
}
|
|
1322
1345
|
|
|
1323
1346
|
.pe-5 {
|
|
1324
|
-
padding-
|
|
1347
|
+
padding-right: 3rem !important;
|
|
1325
1348
|
}
|
|
1326
1349
|
|
|
1327
1350
|
.pb-0 {
|
|
@@ -1349,27 +1372,27 @@
|
|
|
1349
1372
|
}
|
|
1350
1373
|
|
|
1351
1374
|
.ps-0 {
|
|
1352
|
-
padding-
|
|
1375
|
+
padding-left: 0 !important;
|
|
1353
1376
|
}
|
|
1354
1377
|
|
|
1355
1378
|
.ps-1 {
|
|
1356
|
-
padding-
|
|
1379
|
+
padding-left: 0.25rem !important;
|
|
1357
1380
|
}
|
|
1358
1381
|
|
|
1359
1382
|
.ps-2 {
|
|
1360
|
-
padding-
|
|
1383
|
+
padding-left: 0.5rem !important;
|
|
1361
1384
|
}
|
|
1362
1385
|
|
|
1363
1386
|
.ps-3 {
|
|
1364
|
-
padding-
|
|
1387
|
+
padding-left: 1rem !important;
|
|
1365
1388
|
}
|
|
1366
1389
|
|
|
1367
1390
|
.ps-4 {
|
|
1368
|
-
padding-
|
|
1391
|
+
padding-left: 1.5rem !important;
|
|
1369
1392
|
}
|
|
1370
1393
|
|
|
1371
1394
|
.ps-5 {
|
|
1372
|
-
padding-
|
|
1395
|
+
padding-left: 3rem !important;
|
|
1373
1396
|
}
|
|
1374
1397
|
|
|
1375
1398
|
.font-monospace {
|
|
@@ -1453,11 +1476,11 @@
|
|
|
1453
1476
|
}
|
|
1454
1477
|
|
|
1455
1478
|
.text-start {
|
|
1456
|
-
text-align:
|
|
1479
|
+
text-align: left !important;
|
|
1457
1480
|
}
|
|
1458
1481
|
|
|
1459
1482
|
.text-end {
|
|
1460
|
-
text-align:
|
|
1483
|
+
text-align: right !important;
|
|
1461
1484
|
}
|
|
1462
1485
|
|
|
1463
1486
|
.text-center {
|
|
@@ -1504,127 +1527,204 @@
|
|
|
1504
1527
|
|
|
1505
1528
|
/* rtl:end:remove */
|
|
1506
1529
|
.text-primary {
|
|
1507
|
-
|
|
1530
|
+
--cui-text-opacity: 1;
|
|
1531
|
+
color: rgba(var(--cui-primary-rgb), var(--cui-text-opacity)) !important;
|
|
1508
1532
|
}
|
|
1509
1533
|
|
|
1510
1534
|
.text-secondary {
|
|
1511
|
-
|
|
1535
|
+
--cui-text-opacity: 1;
|
|
1536
|
+
color: rgba(var(--cui-secondary-rgb), var(--cui-text-opacity)) !important;
|
|
1512
1537
|
}
|
|
1513
1538
|
|
|
1514
1539
|
.text-success {
|
|
1515
|
-
|
|
1540
|
+
--cui-text-opacity: 1;
|
|
1541
|
+
color: rgba(var(--cui-success-rgb), var(--cui-text-opacity)) !important;
|
|
1516
1542
|
}
|
|
1517
1543
|
|
|
1518
1544
|
.text-info {
|
|
1519
|
-
|
|
1545
|
+
--cui-text-opacity: 1;
|
|
1546
|
+
color: rgba(var(--cui-info-rgb), var(--cui-text-opacity)) !important;
|
|
1520
1547
|
}
|
|
1521
1548
|
|
|
1522
1549
|
.text-warning {
|
|
1523
|
-
|
|
1550
|
+
--cui-text-opacity: 1;
|
|
1551
|
+
color: rgba(var(--cui-warning-rgb), var(--cui-text-opacity)) !important;
|
|
1524
1552
|
}
|
|
1525
1553
|
|
|
1526
1554
|
.text-danger {
|
|
1527
|
-
|
|
1555
|
+
--cui-text-opacity: 1;
|
|
1556
|
+
color: rgba(var(--cui-danger-rgb), var(--cui-text-opacity)) !important;
|
|
1528
1557
|
}
|
|
1529
1558
|
|
|
1530
1559
|
.text-light {
|
|
1531
|
-
|
|
1560
|
+
--cui-text-opacity: 1;
|
|
1561
|
+
color: rgba(var(--cui-light-rgb), var(--cui-text-opacity)) !important;
|
|
1532
1562
|
}
|
|
1533
1563
|
|
|
1534
1564
|
.text-dark {
|
|
1535
|
-
|
|
1565
|
+
--cui-text-opacity: 1;
|
|
1566
|
+
color: rgba(var(--cui-dark-rgb), var(--cui-text-opacity)) !important;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.text-black {
|
|
1570
|
+
--cui-text-opacity: 1;
|
|
1571
|
+
color: rgba(var(--cui-black-rgb), var(--cui-text-opacity)) !important;
|
|
1536
1572
|
}
|
|
1537
1573
|
|
|
1538
1574
|
.text-white {
|
|
1539
|
-
|
|
1575
|
+
--cui-text-opacity: 1;
|
|
1576
|
+
color: rgba(var(--cui-white-rgb), var(--cui-text-opacity)) !important;
|
|
1540
1577
|
}
|
|
1541
1578
|
|
|
1542
1579
|
.text-body {
|
|
1543
|
-
|
|
1580
|
+
--cui-text-opacity: 1;
|
|
1581
|
+
color: rgba(var(--cui-body-color-rgb), var(--cui-text-opacity)) !important;
|
|
1544
1582
|
}
|
|
1545
1583
|
|
|
1546
1584
|
.text-muted {
|
|
1547
|
-
|
|
1585
|
+
--cui-text-opacity: 1;
|
|
1586
|
+
color: rgba(44, 56, 74, 0.38) !important;
|
|
1548
1587
|
}
|
|
1549
1588
|
|
|
1550
1589
|
.text-black-50 {
|
|
1551
|
-
|
|
1590
|
+
--cui-text-opacity: 1;
|
|
1591
|
+
color: rgba(0, 0, 21, 0.5) !important;
|
|
1552
1592
|
}
|
|
1553
1593
|
|
|
1554
1594
|
.text-white-50 {
|
|
1555
|
-
|
|
1595
|
+
--cui-text-opacity: 1;
|
|
1596
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
|
1556
1597
|
}
|
|
1557
1598
|
|
|
1558
1599
|
.text-reset {
|
|
1559
|
-
|
|
1600
|
+
--cui-text-opacity: 1;
|
|
1601
|
+
color: inherit !important;
|
|
1560
1602
|
}
|
|
1561
1603
|
|
|
1562
1604
|
.text-high-emphasis-inverse {
|
|
1563
|
-
|
|
1605
|
+
--cui-text-opacity: 1;
|
|
1606
|
+
color: rgba(255, 255, 255, 0.87) !important;
|
|
1564
1607
|
}
|
|
1565
1608
|
|
|
1566
1609
|
.text-medium-emphasis-inverse {
|
|
1567
|
-
|
|
1610
|
+
--cui-text-opacity: 1;
|
|
1611
|
+
color: rgba(255, 255, 255, 0.6) !important;
|
|
1568
1612
|
}
|
|
1569
1613
|
|
|
1570
1614
|
.text-disabled-inverse {
|
|
1571
|
-
|
|
1615
|
+
--cui-text-opacity: 1;
|
|
1616
|
+
color: rgba(255, 255, 255, 0.38) !important;
|
|
1572
1617
|
}
|
|
1573
1618
|
|
|
1574
1619
|
.text-high-emphasis {
|
|
1575
|
-
|
|
1620
|
+
--cui-text-opacity: 1;
|
|
1621
|
+
color: rgba(44, 56, 74, 0.95) !important;
|
|
1576
1622
|
}
|
|
1577
1623
|
|
|
1578
1624
|
.text-medium-emphasis {
|
|
1579
|
-
|
|
1625
|
+
--cui-text-opacity: 1;
|
|
1626
|
+
color: rgba(44, 56, 74, 0.681) !important;
|
|
1580
1627
|
}
|
|
1581
1628
|
|
|
1582
1629
|
.text-disabled {
|
|
1583
|
-
|
|
1630
|
+
--cui-text-opacity: 1;
|
|
1631
|
+
color: rgba(44, 56, 74, 0.38) !important;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
.text-opacity-25 {
|
|
1635
|
+
--cui-text-opacity: 0.25;
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
.text-opacity-50 {
|
|
1639
|
+
--cui-text-opacity: 0.5;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
.text-opacity-75 {
|
|
1643
|
+
--cui-text-opacity: 0.75;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.text-opacity-100 {
|
|
1647
|
+
--cui-text-opacity: 1;
|
|
1584
1648
|
}
|
|
1585
1649
|
|
|
1586
1650
|
.bg-primary {
|
|
1587
|
-
|
|
1651
|
+
--cui-bg-opacity: 1;
|
|
1652
|
+
background-color: rgba(var(--cui-primary-rgb), var(--cui-bg-opacity)) !important;
|
|
1588
1653
|
}
|
|
1589
1654
|
|
|
1590
1655
|
.bg-secondary {
|
|
1591
|
-
|
|
1656
|
+
--cui-bg-opacity: 1;
|
|
1657
|
+
background-color: rgba(var(--cui-secondary-rgb), var(--cui-bg-opacity)) !important;
|
|
1592
1658
|
}
|
|
1593
1659
|
|
|
1594
1660
|
.bg-success {
|
|
1595
|
-
|
|
1661
|
+
--cui-bg-opacity: 1;
|
|
1662
|
+
background-color: rgba(var(--cui-success-rgb), var(--cui-bg-opacity)) !important;
|
|
1596
1663
|
}
|
|
1597
1664
|
|
|
1598
1665
|
.bg-info {
|
|
1599
|
-
|
|
1666
|
+
--cui-bg-opacity: 1;
|
|
1667
|
+
background-color: rgba(var(--cui-info-rgb), var(--cui-bg-opacity)) !important;
|
|
1600
1668
|
}
|
|
1601
1669
|
|
|
1602
1670
|
.bg-warning {
|
|
1603
|
-
|
|
1671
|
+
--cui-bg-opacity: 1;
|
|
1672
|
+
background-color: rgba(var(--cui-warning-rgb), var(--cui-bg-opacity)) !important;
|
|
1604
1673
|
}
|
|
1605
1674
|
|
|
1606
1675
|
.bg-danger {
|
|
1607
|
-
|
|
1676
|
+
--cui-bg-opacity: 1;
|
|
1677
|
+
background-color: rgba(var(--cui-danger-rgb), var(--cui-bg-opacity)) !important;
|
|
1608
1678
|
}
|
|
1609
1679
|
|
|
1610
1680
|
.bg-light {
|
|
1611
|
-
|
|
1681
|
+
--cui-bg-opacity: 1;
|
|
1682
|
+
background-color: rgba(var(--cui-light-rgb), var(--cui-bg-opacity)) !important;
|
|
1612
1683
|
}
|
|
1613
1684
|
|
|
1614
1685
|
.bg-dark {
|
|
1615
|
-
|
|
1686
|
+
--cui-bg-opacity: 1;
|
|
1687
|
+
background-color: rgba(var(--cui-dark-rgb), var(--cui-bg-opacity)) !important;
|
|
1616
1688
|
}
|
|
1617
1689
|
|
|
1618
|
-
.bg-
|
|
1619
|
-
|
|
1690
|
+
.bg-black {
|
|
1691
|
+
--cui-bg-opacity: 1;
|
|
1692
|
+
background-color: rgba(var(--cui-black-rgb), var(--cui-bg-opacity)) !important;
|
|
1620
1693
|
}
|
|
1621
1694
|
|
|
1622
1695
|
.bg-white {
|
|
1623
|
-
|
|
1696
|
+
--cui-bg-opacity: 1;
|
|
1697
|
+
background-color: rgba(var(--cui-white-rgb), var(--cui-bg-opacity)) !important;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.bg-body {
|
|
1701
|
+
--cui-bg-opacity: 1;
|
|
1702
|
+
background-color: rgba(var(--cui-body-bg-rgb), var(--cui-bg-opacity)) !important;
|
|
1624
1703
|
}
|
|
1625
1704
|
|
|
1626
1705
|
.bg-transparent {
|
|
1627
|
-
|
|
1706
|
+
--cui-bg-opacity: 1;
|
|
1707
|
+
background-color: transparent !important;
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.bg-opacity-10 {
|
|
1711
|
+
--cui-bg-opacity: 0.1;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.bg-opacity-25 {
|
|
1715
|
+
--cui-bg-opacity: 0.25;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.bg-opacity-50 {
|
|
1719
|
+
--cui-bg-opacity: 0.5;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
.bg-opacity-75 {
|
|
1723
|
+
--cui-bg-opacity: 0.75;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.bg-opacity-100 {
|
|
1727
|
+
--cui-bg-opacity: 1;
|
|
1628
1728
|
}
|
|
1629
1729
|
|
|
1630
1730
|
.bg-gradient {
|
|
@@ -1685,8 +1785,8 @@
|
|
|
1685
1785
|
}
|
|
1686
1786
|
|
|
1687
1787
|
.rounded-end {
|
|
1688
|
-
border-top-
|
|
1689
|
-
border-bottom-
|
|
1788
|
+
border-top-right-radius: 0.25rem !important;
|
|
1789
|
+
border-bottom-right-radius: 0.25rem !important;
|
|
1690
1790
|
}
|
|
1691
1791
|
|
|
1692
1792
|
.rounded-bottom {
|
|
@@ -1695,8 +1795,8 @@
|
|
|
1695
1795
|
}
|
|
1696
1796
|
|
|
1697
1797
|
.rounded-start {
|
|
1698
|
-
border-bottom-
|
|
1699
|
-
border-top-
|
|
1798
|
+
border-bottom-left-radius: 0.25rem !important;
|
|
1799
|
+
border-top-left-radius: 0.25rem !important;
|
|
1700
1800
|
}
|
|
1701
1801
|
|
|
1702
1802
|
.visible {
|
|
@@ -1709,11 +1809,11 @@
|
|
|
1709
1809
|
|
|
1710
1810
|
@media (min-width: 576px) {
|
|
1711
1811
|
.float-sm-start {
|
|
1712
|
-
float:
|
|
1812
|
+
float: left !important;
|
|
1713
1813
|
}
|
|
1714
1814
|
|
|
1715
1815
|
.float-sm-end {
|
|
1716
|
-
float:
|
|
1816
|
+
float: right !important;
|
|
1717
1817
|
}
|
|
1718
1818
|
|
|
1719
1819
|
.float-sm-none {
|
|
@@ -2083,31 +2183,31 @@
|
|
|
2083
2183
|
}
|
|
2084
2184
|
|
|
2085
2185
|
.me-sm-0 {
|
|
2086
|
-
margin-
|
|
2186
|
+
margin-right: 0 !important;
|
|
2087
2187
|
}
|
|
2088
2188
|
|
|
2089
2189
|
.me-sm-1 {
|
|
2090
|
-
margin-
|
|
2190
|
+
margin-right: 0.25rem !important;
|
|
2091
2191
|
}
|
|
2092
2192
|
|
|
2093
2193
|
.me-sm-2 {
|
|
2094
|
-
margin-
|
|
2194
|
+
margin-right: 0.5rem !important;
|
|
2095
2195
|
}
|
|
2096
2196
|
|
|
2097
2197
|
.me-sm-3 {
|
|
2098
|
-
margin-
|
|
2198
|
+
margin-right: 1rem !important;
|
|
2099
2199
|
}
|
|
2100
2200
|
|
|
2101
2201
|
.me-sm-4 {
|
|
2102
|
-
margin-
|
|
2202
|
+
margin-right: 1.5rem !important;
|
|
2103
2203
|
}
|
|
2104
2204
|
|
|
2105
2205
|
.me-sm-5 {
|
|
2106
|
-
margin-
|
|
2206
|
+
margin-right: 3rem !important;
|
|
2107
2207
|
}
|
|
2108
2208
|
|
|
2109
2209
|
.me-sm-auto {
|
|
2110
|
-
margin-
|
|
2210
|
+
margin-right: auto !important;
|
|
2111
2211
|
}
|
|
2112
2212
|
|
|
2113
2213
|
.mb-sm-0 {
|
|
@@ -2139,31 +2239,31 @@
|
|
|
2139
2239
|
}
|
|
2140
2240
|
|
|
2141
2241
|
.ms-sm-0 {
|
|
2142
|
-
margin-
|
|
2242
|
+
margin-left: 0 !important;
|
|
2143
2243
|
}
|
|
2144
2244
|
|
|
2145
2245
|
.ms-sm-1 {
|
|
2146
|
-
margin-
|
|
2246
|
+
margin-left: 0.25rem !important;
|
|
2147
2247
|
}
|
|
2148
2248
|
|
|
2149
2249
|
.ms-sm-2 {
|
|
2150
|
-
margin-
|
|
2250
|
+
margin-left: 0.5rem !important;
|
|
2151
2251
|
}
|
|
2152
2252
|
|
|
2153
2253
|
.ms-sm-3 {
|
|
2154
|
-
margin-
|
|
2254
|
+
margin-left: 1rem !important;
|
|
2155
2255
|
}
|
|
2156
2256
|
|
|
2157
2257
|
.ms-sm-4 {
|
|
2158
|
-
margin-
|
|
2258
|
+
margin-left: 1.5rem !important;
|
|
2159
2259
|
}
|
|
2160
2260
|
|
|
2161
2261
|
.ms-sm-5 {
|
|
2162
|
-
margin-
|
|
2262
|
+
margin-left: 3rem !important;
|
|
2163
2263
|
}
|
|
2164
2264
|
|
|
2165
2265
|
.ms-sm-auto {
|
|
2166
|
-
margin-
|
|
2266
|
+
margin-left: auto !important;
|
|
2167
2267
|
}
|
|
2168
2268
|
|
|
2169
2269
|
.p-sm-0 {
|
|
@@ -2275,27 +2375,27 @@
|
|
|
2275
2375
|
}
|
|
2276
2376
|
|
|
2277
2377
|
.pe-sm-0 {
|
|
2278
|
-
padding-
|
|
2378
|
+
padding-right: 0 !important;
|
|
2279
2379
|
}
|
|
2280
2380
|
|
|
2281
2381
|
.pe-sm-1 {
|
|
2282
|
-
padding-
|
|
2382
|
+
padding-right: 0.25rem !important;
|
|
2283
2383
|
}
|
|
2284
2384
|
|
|
2285
2385
|
.pe-sm-2 {
|
|
2286
|
-
padding-
|
|
2386
|
+
padding-right: 0.5rem !important;
|
|
2287
2387
|
}
|
|
2288
2388
|
|
|
2289
2389
|
.pe-sm-3 {
|
|
2290
|
-
padding-
|
|
2390
|
+
padding-right: 1rem !important;
|
|
2291
2391
|
}
|
|
2292
2392
|
|
|
2293
2393
|
.pe-sm-4 {
|
|
2294
|
-
padding-
|
|
2394
|
+
padding-right: 1.5rem !important;
|
|
2295
2395
|
}
|
|
2296
2396
|
|
|
2297
2397
|
.pe-sm-5 {
|
|
2298
|
-
padding-
|
|
2398
|
+
padding-right: 3rem !important;
|
|
2299
2399
|
}
|
|
2300
2400
|
|
|
2301
2401
|
.pb-sm-0 {
|
|
@@ -2323,35 +2423,35 @@
|
|
|
2323
2423
|
}
|
|
2324
2424
|
|
|
2325
2425
|
.ps-sm-0 {
|
|
2326
|
-
padding-
|
|
2426
|
+
padding-left: 0 !important;
|
|
2327
2427
|
}
|
|
2328
2428
|
|
|
2329
2429
|
.ps-sm-1 {
|
|
2330
|
-
padding-
|
|
2430
|
+
padding-left: 0.25rem !important;
|
|
2331
2431
|
}
|
|
2332
2432
|
|
|
2333
2433
|
.ps-sm-2 {
|
|
2334
|
-
padding-
|
|
2434
|
+
padding-left: 0.5rem !important;
|
|
2335
2435
|
}
|
|
2336
2436
|
|
|
2337
2437
|
.ps-sm-3 {
|
|
2338
|
-
padding-
|
|
2438
|
+
padding-left: 1rem !important;
|
|
2339
2439
|
}
|
|
2340
2440
|
|
|
2341
2441
|
.ps-sm-4 {
|
|
2342
|
-
padding-
|
|
2442
|
+
padding-left: 1.5rem !important;
|
|
2343
2443
|
}
|
|
2344
2444
|
|
|
2345
2445
|
.ps-sm-5 {
|
|
2346
|
-
padding-
|
|
2446
|
+
padding-left: 3rem !important;
|
|
2347
2447
|
}
|
|
2348
2448
|
|
|
2349
2449
|
.text-sm-start {
|
|
2350
|
-
text-align:
|
|
2450
|
+
text-align: left !important;
|
|
2351
2451
|
}
|
|
2352
2452
|
|
|
2353
2453
|
.text-sm-end {
|
|
2354
|
-
text-align:
|
|
2454
|
+
text-align: right !important;
|
|
2355
2455
|
}
|
|
2356
2456
|
|
|
2357
2457
|
.text-sm-center {
|
|
@@ -2360,11 +2460,11 @@
|
|
|
2360
2460
|
}
|
|
2361
2461
|
@media (min-width: 768px) {
|
|
2362
2462
|
.float-md-start {
|
|
2363
|
-
float:
|
|
2463
|
+
float: left !important;
|
|
2364
2464
|
}
|
|
2365
2465
|
|
|
2366
2466
|
.float-md-end {
|
|
2367
|
-
float:
|
|
2467
|
+
float: right !important;
|
|
2368
2468
|
}
|
|
2369
2469
|
|
|
2370
2470
|
.float-md-none {
|
|
@@ -2734,31 +2834,31 @@
|
|
|
2734
2834
|
}
|
|
2735
2835
|
|
|
2736
2836
|
.me-md-0 {
|
|
2737
|
-
margin-
|
|
2837
|
+
margin-right: 0 !important;
|
|
2738
2838
|
}
|
|
2739
2839
|
|
|
2740
2840
|
.me-md-1 {
|
|
2741
|
-
margin-
|
|
2841
|
+
margin-right: 0.25rem !important;
|
|
2742
2842
|
}
|
|
2743
2843
|
|
|
2744
2844
|
.me-md-2 {
|
|
2745
|
-
margin-
|
|
2845
|
+
margin-right: 0.5rem !important;
|
|
2746
2846
|
}
|
|
2747
2847
|
|
|
2748
2848
|
.me-md-3 {
|
|
2749
|
-
margin-
|
|
2849
|
+
margin-right: 1rem !important;
|
|
2750
2850
|
}
|
|
2751
2851
|
|
|
2752
2852
|
.me-md-4 {
|
|
2753
|
-
margin-
|
|
2853
|
+
margin-right: 1.5rem !important;
|
|
2754
2854
|
}
|
|
2755
2855
|
|
|
2756
2856
|
.me-md-5 {
|
|
2757
|
-
margin-
|
|
2857
|
+
margin-right: 3rem !important;
|
|
2758
2858
|
}
|
|
2759
2859
|
|
|
2760
2860
|
.me-md-auto {
|
|
2761
|
-
margin-
|
|
2861
|
+
margin-right: auto !important;
|
|
2762
2862
|
}
|
|
2763
2863
|
|
|
2764
2864
|
.mb-md-0 {
|
|
@@ -2790,31 +2890,31 @@
|
|
|
2790
2890
|
}
|
|
2791
2891
|
|
|
2792
2892
|
.ms-md-0 {
|
|
2793
|
-
margin-
|
|
2893
|
+
margin-left: 0 !important;
|
|
2794
2894
|
}
|
|
2795
2895
|
|
|
2796
2896
|
.ms-md-1 {
|
|
2797
|
-
margin-
|
|
2897
|
+
margin-left: 0.25rem !important;
|
|
2798
2898
|
}
|
|
2799
2899
|
|
|
2800
2900
|
.ms-md-2 {
|
|
2801
|
-
margin-
|
|
2901
|
+
margin-left: 0.5rem !important;
|
|
2802
2902
|
}
|
|
2803
2903
|
|
|
2804
2904
|
.ms-md-3 {
|
|
2805
|
-
margin-
|
|
2905
|
+
margin-left: 1rem !important;
|
|
2806
2906
|
}
|
|
2807
2907
|
|
|
2808
2908
|
.ms-md-4 {
|
|
2809
|
-
margin-
|
|
2909
|
+
margin-left: 1.5rem !important;
|
|
2810
2910
|
}
|
|
2811
2911
|
|
|
2812
2912
|
.ms-md-5 {
|
|
2813
|
-
margin-
|
|
2913
|
+
margin-left: 3rem !important;
|
|
2814
2914
|
}
|
|
2815
2915
|
|
|
2816
2916
|
.ms-md-auto {
|
|
2817
|
-
margin-
|
|
2917
|
+
margin-left: auto !important;
|
|
2818
2918
|
}
|
|
2819
2919
|
|
|
2820
2920
|
.p-md-0 {
|
|
@@ -2926,27 +3026,27 @@
|
|
|
2926
3026
|
}
|
|
2927
3027
|
|
|
2928
3028
|
.pe-md-0 {
|
|
2929
|
-
padding-
|
|
3029
|
+
padding-right: 0 !important;
|
|
2930
3030
|
}
|
|
2931
3031
|
|
|
2932
3032
|
.pe-md-1 {
|
|
2933
|
-
padding-
|
|
3033
|
+
padding-right: 0.25rem !important;
|
|
2934
3034
|
}
|
|
2935
3035
|
|
|
2936
3036
|
.pe-md-2 {
|
|
2937
|
-
padding-
|
|
3037
|
+
padding-right: 0.5rem !important;
|
|
2938
3038
|
}
|
|
2939
3039
|
|
|
2940
3040
|
.pe-md-3 {
|
|
2941
|
-
padding-
|
|
3041
|
+
padding-right: 1rem !important;
|
|
2942
3042
|
}
|
|
2943
3043
|
|
|
2944
3044
|
.pe-md-4 {
|
|
2945
|
-
padding-
|
|
3045
|
+
padding-right: 1.5rem !important;
|
|
2946
3046
|
}
|
|
2947
3047
|
|
|
2948
3048
|
.pe-md-5 {
|
|
2949
|
-
padding-
|
|
3049
|
+
padding-right: 3rem !important;
|
|
2950
3050
|
}
|
|
2951
3051
|
|
|
2952
3052
|
.pb-md-0 {
|
|
@@ -2974,35 +3074,35 @@
|
|
|
2974
3074
|
}
|
|
2975
3075
|
|
|
2976
3076
|
.ps-md-0 {
|
|
2977
|
-
padding-
|
|
3077
|
+
padding-left: 0 !important;
|
|
2978
3078
|
}
|
|
2979
3079
|
|
|
2980
3080
|
.ps-md-1 {
|
|
2981
|
-
padding-
|
|
3081
|
+
padding-left: 0.25rem !important;
|
|
2982
3082
|
}
|
|
2983
3083
|
|
|
2984
3084
|
.ps-md-2 {
|
|
2985
|
-
padding-
|
|
3085
|
+
padding-left: 0.5rem !important;
|
|
2986
3086
|
}
|
|
2987
3087
|
|
|
2988
3088
|
.ps-md-3 {
|
|
2989
|
-
padding-
|
|
3089
|
+
padding-left: 1rem !important;
|
|
2990
3090
|
}
|
|
2991
3091
|
|
|
2992
3092
|
.ps-md-4 {
|
|
2993
|
-
padding-
|
|
3093
|
+
padding-left: 1.5rem !important;
|
|
2994
3094
|
}
|
|
2995
3095
|
|
|
2996
3096
|
.ps-md-5 {
|
|
2997
|
-
padding-
|
|
3097
|
+
padding-left: 3rem !important;
|
|
2998
3098
|
}
|
|
2999
3099
|
|
|
3000
3100
|
.text-md-start {
|
|
3001
|
-
text-align:
|
|
3101
|
+
text-align: left !important;
|
|
3002
3102
|
}
|
|
3003
3103
|
|
|
3004
3104
|
.text-md-end {
|
|
3005
|
-
text-align:
|
|
3105
|
+
text-align: right !important;
|
|
3006
3106
|
}
|
|
3007
3107
|
|
|
3008
3108
|
.text-md-center {
|
|
@@ -3011,11 +3111,11 @@
|
|
|
3011
3111
|
}
|
|
3012
3112
|
@media (min-width: 992px) {
|
|
3013
3113
|
.float-lg-start {
|
|
3014
|
-
float:
|
|
3114
|
+
float: left !important;
|
|
3015
3115
|
}
|
|
3016
3116
|
|
|
3017
3117
|
.float-lg-end {
|
|
3018
|
-
float:
|
|
3118
|
+
float: right !important;
|
|
3019
3119
|
}
|
|
3020
3120
|
|
|
3021
3121
|
.float-lg-none {
|
|
@@ -3385,31 +3485,31 @@
|
|
|
3385
3485
|
}
|
|
3386
3486
|
|
|
3387
3487
|
.me-lg-0 {
|
|
3388
|
-
margin-
|
|
3488
|
+
margin-right: 0 !important;
|
|
3389
3489
|
}
|
|
3390
3490
|
|
|
3391
3491
|
.me-lg-1 {
|
|
3392
|
-
margin-
|
|
3492
|
+
margin-right: 0.25rem !important;
|
|
3393
3493
|
}
|
|
3394
3494
|
|
|
3395
3495
|
.me-lg-2 {
|
|
3396
|
-
margin-
|
|
3496
|
+
margin-right: 0.5rem !important;
|
|
3397
3497
|
}
|
|
3398
3498
|
|
|
3399
3499
|
.me-lg-3 {
|
|
3400
|
-
margin-
|
|
3500
|
+
margin-right: 1rem !important;
|
|
3401
3501
|
}
|
|
3402
3502
|
|
|
3403
3503
|
.me-lg-4 {
|
|
3404
|
-
margin-
|
|
3504
|
+
margin-right: 1.5rem !important;
|
|
3405
3505
|
}
|
|
3406
3506
|
|
|
3407
3507
|
.me-lg-5 {
|
|
3408
|
-
margin-
|
|
3508
|
+
margin-right: 3rem !important;
|
|
3409
3509
|
}
|
|
3410
3510
|
|
|
3411
3511
|
.me-lg-auto {
|
|
3412
|
-
margin-
|
|
3512
|
+
margin-right: auto !important;
|
|
3413
3513
|
}
|
|
3414
3514
|
|
|
3415
3515
|
.mb-lg-0 {
|
|
@@ -3441,31 +3541,31 @@
|
|
|
3441
3541
|
}
|
|
3442
3542
|
|
|
3443
3543
|
.ms-lg-0 {
|
|
3444
|
-
margin-
|
|
3544
|
+
margin-left: 0 !important;
|
|
3445
3545
|
}
|
|
3446
3546
|
|
|
3447
3547
|
.ms-lg-1 {
|
|
3448
|
-
margin-
|
|
3548
|
+
margin-left: 0.25rem !important;
|
|
3449
3549
|
}
|
|
3450
3550
|
|
|
3451
3551
|
.ms-lg-2 {
|
|
3452
|
-
margin-
|
|
3552
|
+
margin-left: 0.5rem !important;
|
|
3453
3553
|
}
|
|
3454
3554
|
|
|
3455
3555
|
.ms-lg-3 {
|
|
3456
|
-
margin-
|
|
3556
|
+
margin-left: 1rem !important;
|
|
3457
3557
|
}
|
|
3458
3558
|
|
|
3459
3559
|
.ms-lg-4 {
|
|
3460
|
-
margin-
|
|
3560
|
+
margin-left: 1.5rem !important;
|
|
3461
3561
|
}
|
|
3462
3562
|
|
|
3463
3563
|
.ms-lg-5 {
|
|
3464
|
-
margin-
|
|
3564
|
+
margin-left: 3rem !important;
|
|
3465
3565
|
}
|
|
3466
3566
|
|
|
3467
3567
|
.ms-lg-auto {
|
|
3468
|
-
margin-
|
|
3568
|
+
margin-left: auto !important;
|
|
3469
3569
|
}
|
|
3470
3570
|
|
|
3471
3571
|
.p-lg-0 {
|
|
@@ -3577,27 +3677,27 @@
|
|
|
3577
3677
|
}
|
|
3578
3678
|
|
|
3579
3679
|
.pe-lg-0 {
|
|
3580
|
-
padding-
|
|
3680
|
+
padding-right: 0 !important;
|
|
3581
3681
|
}
|
|
3582
3682
|
|
|
3583
3683
|
.pe-lg-1 {
|
|
3584
|
-
padding-
|
|
3684
|
+
padding-right: 0.25rem !important;
|
|
3585
3685
|
}
|
|
3586
3686
|
|
|
3587
3687
|
.pe-lg-2 {
|
|
3588
|
-
padding-
|
|
3688
|
+
padding-right: 0.5rem !important;
|
|
3589
3689
|
}
|
|
3590
3690
|
|
|
3591
3691
|
.pe-lg-3 {
|
|
3592
|
-
padding-
|
|
3692
|
+
padding-right: 1rem !important;
|
|
3593
3693
|
}
|
|
3594
3694
|
|
|
3595
3695
|
.pe-lg-4 {
|
|
3596
|
-
padding-
|
|
3696
|
+
padding-right: 1.5rem !important;
|
|
3597
3697
|
}
|
|
3598
3698
|
|
|
3599
3699
|
.pe-lg-5 {
|
|
3600
|
-
padding-
|
|
3700
|
+
padding-right: 3rem !important;
|
|
3601
3701
|
}
|
|
3602
3702
|
|
|
3603
3703
|
.pb-lg-0 {
|
|
@@ -3625,35 +3725,35 @@
|
|
|
3625
3725
|
}
|
|
3626
3726
|
|
|
3627
3727
|
.ps-lg-0 {
|
|
3628
|
-
padding-
|
|
3728
|
+
padding-left: 0 !important;
|
|
3629
3729
|
}
|
|
3630
3730
|
|
|
3631
3731
|
.ps-lg-1 {
|
|
3632
|
-
padding-
|
|
3732
|
+
padding-left: 0.25rem !important;
|
|
3633
3733
|
}
|
|
3634
3734
|
|
|
3635
3735
|
.ps-lg-2 {
|
|
3636
|
-
padding-
|
|
3736
|
+
padding-left: 0.5rem !important;
|
|
3637
3737
|
}
|
|
3638
3738
|
|
|
3639
3739
|
.ps-lg-3 {
|
|
3640
|
-
padding-
|
|
3740
|
+
padding-left: 1rem !important;
|
|
3641
3741
|
}
|
|
3642
3742
|
|
|
3643
3743
|
.ps-lg-4 {
|
|
3644
|
-
padding-
|
|
3744
|
+
padding-left: 1.5rem !important;
|
|
3645
3745
|
}
|
|
3646
3746
|
|
|
3647
3747
|
.ps-lg-5 {
|
|
3648
|
-
padding-
|
|
3748
|
+
padding-left: 3rem !important;
|
|
3649
3749
|
}
|
|
3650
3750
|
|
|
3651
3751
|
.text-lg-start {
|
|
3652
|
-
text-align:
|
|
3752
|
+
text-align: left !important;
|
|
3653
3753
|
}
|
|
3654
3754
|
|
|
3655
3755
|
.text-lg-end {
|
|
3656
|
-
text-align:
|
|
3756
|
+
text-align: right !important;
|
|
3657
3757
|
}
|
|
3658
3758
|
|
|
3659
3759
|
.text-lg-center {
|
|
@@ -3662,11 +3762,11 @@
|
|
|
3662
3762
|
}
|
|
3663
3763
|
@media (min-width: 1200px) {
|
|
3664
3764
|
.float-xl-start {
|
|
3665
|
-
float:
|
|
3765
|
+
float: left !important;
|
|
3666
3766
|
}
|
|
3667
3767
|
|
|
3668
3768
|
.float-xl-end {
|
|
3669
|
-
float:
|
|
3769
|
+
float: right !important;
|
|
3670
3770
|
}
|
|
3671
3771
|
|
|
3672
3772
|
.float-xl-none {
|
|
@@ -4036,31 +4136,31 @@
|
|
|
4036
4136
|
}
|
|
4037
4137
|
|
|
4038
4138
|
.me-xl-0 {
|
|
4039
|
-
margin-
|
|
4139
|
+
margin-right: 0 !important;
|
|
4040
4140
|
}
|
|
4041
4141
|
|
|
4042
4142
|
.me-xl-1 {
|
|
4043
|
-
margin-
|
|
4143
|
+
margin-right: 0.25rem !important;
|
|
4044
4144
|
}
|
|
4045
4145
|
|
|
4046
4146
|
.me-xl-2 {
|
|
4047
|
-
margin-
|
|
4147
|
+
margin-right: 0.5rem !important;
|
|
4048
4148
|
}
|
|
4049
4149
|
|
|
4050
4150
|
.me-xl-3 {
|
|
4051
|
-
margin-
|
|
4151
|
+
margin-right: 1rem !important;
|
|
4052
4152
|
}
|
|
4053
4153
|
|
|
4054
4154
|
.me-xl-4 {
|
|
4055
|
-
margin-
|
|
4155
|
+
margin-right: 1.5rem !important;
|
|
4056
4156
|
}
|
|
4057
4157
|
|
|
4058
4158
|
.me-xl-5 {
|
|
4059
|
-
margin-
|
|
4159
|
+
margin-right: 3rem !important;
|
|
4060
4160
|
}
|
|
4061
4161
|
|
|
4062
4162
|
.me-xl-auto {
|
|
4063
|
-
margin-
|
|
4163
|
+
margin-right: auto !important;
|
|
4064
4164
|
}
|
|
4065
4165
|
|
|
4066
4166
|
.mb-xl-0 {
|
|
@@ -4092,31 +4192,31 @@
|
|
|
4092
4192
|
}
|
|
4093
4193
|
|
|
4094
4194
|
.ms-xl-0 {
|
|
4095
|
-
margin-
|
|
4195
|
+
margin-left: 0 !important;
|
|
4096
4196
|
}
|
|
4097
4197
|
|
|
4098
4198
|
.ms-xl-1 {
|
|
4099
|
-
margin-
|
|
4199
|
+
margin-left: 0.25rem !important;
|
|
4100
4200
|
}
|
|
4101
4201
|
|
|
4102
4202
|
.ms-xl-2 {
|
|
4103
|
-
margin-
|
|
4203
|
+
margin-left: 0.5rem !important;
|
|
4104
4204
|
}
|
|
4105
4205
|
|
|
4106
4206
|
.ms-xl-3 {
|
|
4107
|
-
margin-
|
|
4207
|
+
margin-left: 1rem !important;
|
|
4108
4208
|
}
|
|
4109
4209
|
|
|
4110
4210
|
.ms-xl-4 {
|
|
4111
|
-
margin-
|
|
4211
|
+
margin-left: 1.5rem !important;
|
|
4112
4212
|
}
|
|
4113
4213
|
|
|
4114
4214
|
.ms-xl-5 {
|
|
4115
|
-
margin-
|
|
4215
|
+
margin-left: 3rem !important;
|
|
4116
4216
|
}
|
|
4117
4217
|
|
|
4118
4218
|
.ms-xl-auto {
|
|
4119
|
-
margin-
|
|
4219
|
+
margin-left: auto !important;
|
|
4120
4220
|
}
|
|
4121
4221
|
|
|
4122
4222
|
.p-xl-0 {
|
|
@@ -4228,27 +4328,27 @@
|
|
|
4228
4328
|
}
|
|
4229
4329
|
|
|
4230
4330
|
.pe-xl-0 {
|
|
4231
|
-
padding-
|
|
4331
|
+
padding-right: 0 !important;
|
|
4232
4332
|
}
|
|
4233
4333
|
|
|
4234
4334
|
.pe-xl-1 {
|
|
4235
|
-
padding-
|
|
4335
|
+
padding-right: 0.25rem !important;
|
|
4236
4336
|
}
|
|
4237
4337
|
|
|
4238
4338
|
.pe-xl-2 {
|
|
4239
|
-
padding-
|
|
4339
|
+
padding-right: 0.5rem !important;
|
|
4240
4340
|
}
|
|
4241
4341
|
|
|
4242
4342
|
.pe-xl-3 {
|
|
4243
|
-
padding-
|
|
4343
|
+
padding-right: 1rem !important;
|
|
4244
4344
|
}
|
|
4245
4345
|
|
|
4246
4346
|
.pe-xl-4 {
|
|
4247
|
-
padding-
|
|
4347
|
+
padding-right: 1.5rem !important;
|
|
4248
4348
|
}
|
|
4249
4349
|
|
|
4250
4350
|
.pe-xl-5 {
|
|
4251
|
-
padding-
|
|
4351
|
+
padding-right: 3rem !important;
|
|
4252
4352
|
}
|
|
4253
4353
|
|
|
4254
4354
|
.pb-xl-0 {
|
|
@@ -4276,35 +4376,35 @@
|
|
|
4276
4376
|
}
|
|
4277
4377
|
|
|
4278
4378
|
.ps-xl-0 {
|
|
4279
|
-
padding-
|
|
4379
|
+
padding-left: 0 !important;
|
|
4280
4380
|
}
|
|
4281
4381
|
|
|
4282
4382
|
.ps-xl-1 {
|
|
4283
|
-
padding-
|
|
4383
|
+
padding-left: 0.25rem !important;
|
|
4284
4384
|
}
|
|
4285
4385
|
|
|
4286
4386
|
.ps-xl-2 {
|
|
4287
|
-
padding-
|
|
4387
|
+
padding-left: 0.5rem !important;
|
|
4288
4388
|
}
|
|
4289
4389
|
|
|
4290
4390
|
.ps-xl-3 {
|
|
4291
|
-
padding-
|
|
4391
|
+
padding-left: 1rem !important;
|
|
4292
4392
|
}
|
|
4293
4393
|
|
|
4294
4394
|
.ps-xl-4 {
|
|
4295
|
-
padding-
|
|
4395
|
+
padding-left: 1.5rem !important;
|
|
4296
4396
|
}
|
|
4297
4397
|
|
|
4298
4398
|
.ps-xl-5 {
|
|
4299
|
-
padding-
|
|
4399
|
+
padding-left: 3rem !important;
|
|
4300
4400
|
}
|
|
4301
4401
|
|
|
4302
4402
|
.text-xl-start {
|
|
4303
|
-
text-align:
|
|
4403
|
+
text-align: left !important;
|
|
4304
4404
|
}
|
|
4305
4405
|
|
|
4306
4406
|
.text-xl-end {
|
|
4307
|
-
text-align:
|
|
4407
|
+
text-align: right !important;
|
|
4308
4408
|
}
|
|
4309
4409
|
|
|
4310
4410
|
.text-xl-center {
|
|
@@ -4313,11 +4413,11 @@
|
|
|
4313
4413
|
}
|
|
4314
4414
|
@media (min-width: 1400px) {
|
|
4315
4415
|
.float-xxl-start {
|
|
4316
|
-
float:
|
|
4416
|
+
float: left !important;
|
|
4317
4417
|
}
|
|
4318
4418
|
|
|
4319
4419
|
.float-xxl-end {
|
|
4320
|
-
float:
|
|
4420
|
+
float: right !important;
|
|
4321
4421
|
}
|
|
4322
4422
|
|
|
4323
4423
|
.float-xxl-none {
|
|
@@ -4687,31 +4787,31 @@
|
|
|
4687
4787
|
}
|
|
4688
4788
|
|
|
4689
4789
|
.me-xxl-0 {
|
|
4690
|
-
margin-
|
|
4790
|
+
margin-right: 0 !important;
|
|
4691
4791
|
}
|
|
4692
4792
|
|
|
4693
4793
|
.me-xxl-1 {
|
|
4694
|
-
margin-
|
|
4794
|
+
margin-right: 0.25rem !important;
|
|
4695
4795
|
}
|
|
4696
4796
|
|
|
4697
4797
|
.me-xxl-2 {
|
|
4698
|
-
margin-
|
|
4798
|
+
margin-right: 0.5rem !important;
|
|
4699
4799
|
}
|
|
4700
4800
|
|
|
4701
4801
|
.me-xxl-3 {
|
|
4702
|
-
margin-
|
|
4802
|
+
margin-right: 1rem !important;
|
|
4703
4803
|
}
|
|
4704
4804
|
|
|
4705
4805
|
.me-xxl-4 {
|
|
4706
|
-
margin-
|
|
4806
|
+
margin-right: 1.5rem !important;
|
|
4707
4807
|
}
|
|
4708
4808
|
|
|
4709
4809
|
.me-xxl-5 {
|
|
4710
|
-
margin-
|
|
4810
|
+
margin-right: 3rem !important;
|
|
4711
4811
|
}
|
|
4712
4812
|
|
|
4713
4813
|
.me-xxl-auto {
|
|
4714
|
-
margin-
|
|
4814
|
+
margin-right: auto !important;
|
|
4715
4815
|
}
|
|
4716
4816
|
|
|
4717
4817
|
.mb-xxl-0 {
|
|
@@ -4743,31 +4843,31 @@
|
|
|
4743
4843
|
}
|
|
4744
4844
|
|
|
4745
4845
|
.ms-xxl-0 {
|
|
4746
|
-
margin-
|
|
4846
|
+
margin-left: 0 !important;
|
|
4747
4847
|
}
|
|
4748
4848
|
|
|
4749
4849
|
.ms-xxl-1 {
|
|
4750
|
-
margin-
|
|
4850
|
+
margin-left: 0.25rem !important;
|
|
4751
4851
|
}
|
|
4752
4852
|
|
|
4753
4853
|
.ms-xxl-2 {
|
|
4754
|
-
margin-
|
|
4854
|
+
margin-left: 0.5rem !important;
|
|
4755
4855
|
}
|
|
4756
4856
|
|
|
4757
4857
|
.ms-xxl-3 {
|
|
4758
|
-
margin-
|
|
4858
|
+
margin-left: 1rem !important;
|
|
4759
4859
|
}
|
|
4760
4860
|
|
|
4761
4861
|
.ms-xxl-4 {
|
|
4762
|
-
margin-
|
|
4862
|
+
margin-left: 1.5rem !important;
|
|
4763
4863
|
}
|
|
4764
4864
|
|
|
4765
4865
|
.ms-xxl-5 {
|
|
4766
|
-
margin-
|
|
4866
|
+
margin-left: 3rem !important;
|
|
4767
4867
|
}
|
|
4768
4868
|
|
|
4769
4869
|
.ms-xxl-auto {
|
|
4770
|
-
margin-
|
|
4870
|
+
margin-left: auto !important;
|
|
4771
4871
|
}
|
|
4772
4872
|
|
|
4773
4873
|
.p-xxl-0 {
|
|
@@ -4879,27 +4979,27 @@
|
|
|
4879
4979
|
}
|
|
4880
4980
|
|
|
4881
4981
|
.pe-xxl-0 {
|
|
4882
|
-
padding-
|
|
4982
|
+
padding-right: 0 !important;
|
|
4883
4983
|
}
|
|
4884
4984
|
|
|
4885
4985
|
.pe-xxl-1 {
|
|
4886
|
-
padding-
|
|
4986
|
+
padding-right: 0.25rem !important;
|
|
4887
4987
|
}
|
|
4888
4988
|
|
|
4889
4989
|
.pe-xxl-2 {
|
|
4890
|
-
padding-
|
|
4990
|
+
padding-right: 0.5rem !important;
|
|
4891
4991
|
}
|
|
4892
4992
|
|
|
4893
4993
|
.pe-xxl-3 {
|
|
4894
|
-
padding-
|
|
4994
|
+
padding-right: 1rem !important;
|
|
4895
4995
|
}
|
|
4896
4996
|
|
|
4897
4997
|
.pe-xxl-4 {
|
|
4898
|
-
padding-
|
|
4998
|
+
padding-right: 1.5rem !important;
|
|
4899
4999
|
}
|
|
4900
5000
|
|
|
4901
5001
|
.pe-xxl-5 {
|
|
4902
|
-
padding-
|
|
5002
|
+
padding-right: 3rem !important;
|
|
4903
5003
|
}
|
|
4904
5004
|
|
|
4905
5005
|
.pb-xxl-0 {
|
|
@@ -4927,35 +5027,35 @@
|
|
|
4927
5027
|
}
|
|
4928
5028
|
|
|
4929
5029
|
.ps-xxl-0 {
|
|
4930
|
-
padding-
|
|
5030
|
+
padding-left: 0 !important;
|
|
4931
5031
|
}
|
|
4932
5032
|
|
|
4933
5033
|
.ps-xxl-1 {
|
|
4934
|
-
padding-
|
|
5034
|
+
padding-left: 0.25rem !important;
|
|
4935
5035
|
}
|
|
4936
5036
|
|
|
4937
5037
|
.ps-xxl-2 {
|
|
4938
|
-
padding-
|
|
5038
|
+
padding-left: 0.5rem !important;
|
|
4939
5039
|
}
|
|
4940
5040
|
|
|
4941
5041
|
.ps-xxl-3 {
|
|
4942
|
-
padding-
|
|
5042
|
+
padding-left: 1rem !important;
|
|
4943
5043
|
}
|
|
4944
5044
|
|
|
4945
5045
|
.ps-xxl-4 {
|
|
4946
|
-
padding-
|
|
5046
|
+
padding-left: 1.5rem !important;
|
|
4947
5047
|
}
|
|
4948
5048
|
|
|
4949
5049
|
.ps-xxl-5 {
|
|
4950
|
-
padding-
|
|
5050
|
+
padding-left: 3rem !important;
|
|
4951
5051
|
}
|
|
4952
5052
|
|
|
4953
5053
|
.text-xxl-start {
|
|
4954
|
-
text-align:
|
|
5054
|
+
text-align: left !important;
|
|
4955
5055
|
}
|
|
4956
5056
|
|
|
4957
5057
|
.text-xxl-end {
|
|
4958
|
-
text-align:
|
|
5058
|
+
text-align: right !important;
|
|
4959
5059
|
}
|
|
4960
5060
|
|
|
4961
5061
|
.text-xxl-center {
|