testio-tailwind 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/assets/stylesheets/components/tables.css +280 -2
- package/src/assets/stylesheets/tailwind.config.js +15 -0
- package/src/pages/components/tables-cellstyle.pug +285 -0
- package/src/pages/components/tables-grid.pug +258 -0
- package/src/pages/components/tables_cells.pug +57 -0
- package/src/pages/layout/margins.haml +55 -0
- package/src/pages/layout/paddings.haml +86 -0
- package/src/pages/layout/spacing.haml +30 -8
- package/src/static/app.compiled.css +828 -48
- package/src/static/app.compiled.css.map +1 -1
|
@@ -16375,7 +16375,10 @@ img.chat-avatar{
|
|
|
16375
16375
|
border-top-width: 1px;
|
|
16376
16376
|
--tw-border-opacity: 1;
|
|
16377
16377
|
border-color: rgb(230 230 230 / var(--tw-border-opacity, 1));
|
|
16378
|
-
padding: 10px;
|
|
16378
|
+
padding-top: 10px;
|
|
16379
|
+
padding-bottom: 10px;
|
|
16380
|
+
padding-left: 15px;
|
|
16381
|
+
padding-right: 15px;
|
|
16379
16382
|
vertical-align: middle;
|
|
16380
16383
|
}
|
|
16381
16384
|
|
|
@@ -16438,75 +16441,584 @@ img.chat-avatar{
|
|
|
16438
16441
|
padding-right: 30px;
|
|
16439
16442
|
}
|
|
16440
16443
|
|
|
16441
|
-
.table.table-sm td:last-child {
|
|
16442
|
-
padding-right: 0;
|
|
16443
|
-
}
|
|
16444
|
+
.table.table-sm td:last-child {
|
|
16445
|
+
padding-right: 0;
|
|
16446
|
+
}
|
|
16447
|
+
|
|
16448
|
+
.table th,
|
|
16449
|
+
.table thead th{
|
|
16450
|
+
border-bottom-width: 1px;
|
|
16451
|
+
--tw-border-opacity: 1;
|
|
16452
|
+
border-color: rgb(230 230 230 / var(--tw-border-opacity, 1));
|
|
16453
|
+
padding-top: 5px;
|
|
16454
|
+
padding-bottom: 5px;
|
|
16455
|
+
font-size: 13px;
|
|
16456
|
+
line-height: 13px;
|
|
16457
|
+
font-weight: 600;
|
|
16458
|
+
}
|
|
16459
|
+
|
|
16460
|
+
.table tr:first-child td,
|
|
16461
|
+
.table.tbody tr:first-child td {
|
|
16462
|
+
border-top: 0;
|
|
16463
|
+
}
|
|
16464
|
+
|
|
16465
|
+
.td-title{
|
|
16466
|
+
display: inline;
|
|
16467
|
+
padding-right: 10px;
|
|
16468
|
+
--tw-text-opacity: 1;
|
|
16469
|
+
color: rgb(29 29 29 / var(--tw-text-opacity, 1));
|
|
16470
|
+
}
|
|
16471
|
+
|
|
16472
|
+
.td-title:hover{
|
|
16473
|
+
--tw-text-opacity: 1;
|
|
16474
|
+
color: rgb(33 190 244 / var(--tw-text-opacity, 1));
|
|
16475
|
+
}
|
|
16476
|
+
|
|
16477
|
+
.table-bordered,
|
|
16478
|
+
.table-bordered thead,
|
|
16479
|
+
.table-bordered tbody {
|
|
16480
|
+
border: 0;
|
|
16481
|
+
}
|
|
16482
|
+
|
|
16483
|
+
.table-bordered tr th:first-child,
|
|
16484
|
+
.table-bordered tr td:first-child {
|
|
16485
|
+
border-left: 0;
|
|
16486
|
+
}
|
|
16487
|
+
|
|
16488
|
+
.table-bordered tr td:last-child,
|
|
16489
|
+
.table-bordered tr th:last-child {
|
|
16490
|
+
border-right: 0;
|
|
16491
|
+
}
|
|
16492
|
+
|
|
16493
|
+
.table td.cell-with-buttons{
|
|
16494
|
+
padding-top: 5px;
|
|
16495
|
+
padding-bottom: 5px;
|
|
16496
|
+
}
|
|
16497
|
+
|
|
16498
|
+
.table .linked-cell:hover,
|
|
16499
|
+
.table .linked-row:hover{
|
|
16500
|
+
cursor: pointer;
|
|
16501
|
+
--tw-bg-opacity: 1;
|
|
16502
|
+
background-color: rgb(33 190 244 / var(--tw-bg-opacity, 1));
|
|
16503
|
+
--tw-text-opacity: 1;
|
|
16504
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
16505
|
+
}
|
|
16506
|
+
|
|
16507
|
+
.table tr:has(.highlight-parent-row:hover){
|
|
16508
|
+
cursor: pointer;
|
|
16509
|
+
--tw-bg-opacity: 1;
|
|
16510
|
+
background-color: rgb(33 190 244 / var(--tw-bg-opacity, 1));
|
|
16511
|
+
--tw-text-opacity: 1;
|
|
16512
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
16513
|
+
}
|
|
16514
|
+
|
|
16515
|
+
.table-standard{
|
|
16516
|
+
width: 100%;
|
|
16517
|
+
}
|
|
16518
|
+
|
|
16519
|
+
.table-standard th, .table-standard td{
|
|
16520
|
+
width: 0px;
|
|
16521
|
+
text-align: left;
|
|
16522
|
+
vertical-align: top;
|
|
16523
|
+
}
|
|
16524
|
+
|
|
16525
|
+
.table-standard th:last-child, .table-standard td:last-child{
|
|
16526
|
+
width: auto;
|
|
16527
|
+
}
|
|
16528
|
+
|
|
16529
|
+
@media (min-width: 768px){
|
|
16530
|
+
|
|
16531
|
+
.table-standard th, .table-standard td{
|
|
16532
|
+
white-space: nowrap;
|
|
16533
|
+
}
|
|
16534
|
+
}
|
|
16535
|
+
|
|
16536
|
+
.table-standard th.cell-full-width, .table-standard td.cell-full-width{
|
|
16537
|
+
width: 100%;
|
|
16538
|
+
}
|
|
16539
|
+
|
|
16540
|
+
.table-standard th{
|
|
16541
|
+
padding-bottom: 0.625rem;
|
|
16542
|
+
padding-right: 30px;
|
|
16543
|
+
}
|
|
16544
|
+
|
|
16545
|
+
.table-standard th:last-child{
|
|
16546
|
+
padding-right: 0px;
|
|
16547
|
+
}
|
|
16548
|
+
|
|
16549
|
+
.table-standard tr{
|
|
16550
|
+
border-top-width: 1px;
|
|
16551
|
+
}
|
|
16552
|
+
|
|
16553
|
+
.table-standard tr:first-child{
|
|
16554
|
+
border-width: 0px;
|
|
16555
|
+
}
|
|
16556
|
+
|
|
16557
|
+
.table-standard tfoot{
|
|
16558
|
+
border-top-width: 1px;
|
|
16559
|
+
}
|
|
16560
|
+
|
|
16561
|
+
.table-standard tfoot.sum{
|
|
16562
|
+
border-top-width: 4px;
|
|
16563
|
+
border-style: double;
|
|
16564
|
+
}
|
|
16565
|
+
|
|
16566
|
+
.table-standard td{
|
|
16567
|
+
padding-top: 0.625rem;
|
|
16568
|
+
padding-bottom: 0.625rem;
|
|
16569
|
+
padding-right: 30px;
|
|
16570
|
+
}
|
|
16571
|
+
|
|
16572
|
+
.table-standard td:last-child{
|
|
16573
|
+
padding-right: 0px;
|
|
16574
|
+
}
|
|
16575
|
+
|
|
16576
|
+
.table-standard th.wrap,
|
|
16577
|
+
.table-standard td.wrap{
|
|
16578
|
+
white-space: normal;
|
|
16579
|
+
overflow-wrap: break-word;
|
|
16580
|
+
word-break: break-word;
|
|
16581
|
+
}
|
|
16582
|
+
|
|
16583
|
+
.table-standard th.pre,
|
|
16584
|
+
.table-standard td.pre{
|
|
16585
|
+
white-space: pre-line;
|
|
16586
|
+
overflow-wrap: break-word;
|
|
16587
|
+
word-break: break-word;
|
|
16588
|
+
}
|
|
16589
|
+
|
|
16590
|
+
td.action-cell,
|
|
16591
|
+
.table-cellstyle td.action-cell{
|
|
16592
|
+
min-width: auto;
|
|
16593
|
+
}
|
|
16594
|
+
|
|
16595
|
+
td.action-cell > :not([hidden]) ~ :not([hidden]),
|
|
16596
|
+
.table-cellstyle td.action-cell > :not([hidden]) ~ :not([hidden]){
|
|
16597
|
+
--tw-space-x-reverse: 0;
|
|
16598
|
+
margin-right: calc(0.375rem * var(--tw-space-x-reverse));
|
|
16599
|
+
margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
|
|
16600
|
+
}
|
|
16601
|
+
|
|
16602
|
+
td.action-cell,
|
|
16603
|
+
.table-cellstyle td.action-cell{
|
|
16604
|
+
white-space: nowrap;
|
|
16605
|
+
text-align: right;
|
|
16606
|
+
}
|
|
16607
|
+
|
|
16608
|
+
.table-cellstyle {
|
|
16609
|
+
border-spacing: 2px;
|
|
16610
|
+
border-collapse: separate;
|
|
16611
|
+
}
|
|
16612
|
+
|
|
16613
|
+
.table-cellstyle th{
|
|
16614
|
+
position: relative;
|
|
16615
|
+
padding-top: 0.25rem;
|
|
16616
|
+
padding-bottom: 0.25rem;
|
|
16617
|
+
padding-left: 0.625rem;
|
|
16618
|
+
padding-right: 0.125rem;
|
|
16619
|
+
vertical-align: middle;
|
|
16620
|
+
font-size: 0.813rem;
|
|
16621
|
+
line-height: 0.813rem;
|
|
16622
|
+
font-weight: 400;
|
|
16623
|
+
}
|
|
16624
|
+
|
|
16625
|
+
.table-cellstyle th.missing,
|
|
16626
|
+
.table-cellstyle th.inprogress,
|
|
16627
|
+
.table-cellstyle th.completed{
|
|
16628
|
+
padding-right: 3.5rem;
|
|
16629
|
+
}
|
|
16630
|
+
|
|
16631
|
+
.table-cellstyle th label{
|
|
16632
|
+
font-size: 0.813rem;
|
|
16633
|
+
line-height: 0.813rem;
|
|
16634
|
+
}
|
|
16635
|
+
|
|
16636
|
+
.table-cellstyle th.missing::after,
|
|
16637
|
+
.table-cellstyle th.inprogress::after,
|
|
16638
|
+
.table-cellstyle th.complete::after,
|
|
16639
|
+
.table-cellstyle .cell-editable::after{
|
|
16640
|
+
position: absolute;
|
|
16641
|
+
right: 0.625rem;
|
|
16642
|
+
top: 0.5rem;
|
|
16643
|
+
display: inline-block;
|
|
16644
|
+
height: 16px;
|
|
16645
|
+
width: 16px;
|
|
16646
|
+
content: "";
|
|
16647
|
+
-webkit-mask-repeat: no-repeat;
|
|
16648
|
+
mask-repeat: no-repeat;
|
|
16649
|
+
}
|
|
16650
|
+
|
|
16651
|
+
.table-cellstyle th.missing::after{
|
|
16652
|
+
right: 0px;
|
|
16653
|
+
--tw-bg-opacity: 1;
|
|
16654
|
+
background-color: rgb(95 101 109 / var(--tw-bg-opacity, 1));
|
|
16655
|
+
-webkit-mask-image: url("../../../images/exclamation.svg");
|
|
16656
|
+
mask-image: url("../../../images/exclamation.svg");
|
|
16657
|
+
}
|
|
16658
|
+
|
|
16659
|
+
.table-cellstyle th.inprogress::after{
|
|
16660
|
+
--tw-bg-opacity: 1;
|
|
16661
|
+
background-color: rgb(95 101 109 / var(--tw-bg-opacity, 1));
|
|
16662
|
+
-webkit-mask-image: url("../../../images/clock.svg");
|
|
16663
|
+
mask-image: url("../../../images/clock.svg");
|
|
16664
|
+
}
|
|
16665
|
+
|
|
16666
|
+
.table-cellstyle th.completed::after{
|
|
16667
|
+
top: 0.625rem;
|
|
16668
|
+
right: 0.375rem;
|
|
16669
|
+
height: 0.625rem;
|
|
16670
|
+
--tw-bg-opacity: 1;
|
|
16671
|
+
background-color: rgb(140 189 36 / var(--tw-bg-opacity, 1));
|
|
16672
|
+
-webkit-mask-image: url("../../../images/check-thick.svg");
|
|
16673
|
+
mask-image: url("../../../images/check-thick.svg");
|
|
16674
|
+
}
|
|
16675
|
+
|
|
16676
|
+
.table-cellstyle td{
|
|
16677
|
+
position: relative;
|
|
16678
|
+
min-height: 2.75rem;
|
|
16679
|
+
min-width: 10rem;
|
|
16680
|
+
--tw-bg-opacity: 1;
|
|
16681
|
+
background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
|
|
16682
|
+
padding-left: 0.625rem;
|
|
16683
|
+
padding-right: 0.625rem;
|
|
16684
|
+
padding-top: 0.375rem;
|
|
16685
|
+
padding-bottom: 0.375rem;
|
|
16686
|
+
vertical-align: top;
|
|
16687
|
+
font-size: 0.813rem;
|
|
16688
|
+
line-height: 0.813rem;
|
|
16689
|
+
}
|
|
16690
|
+
|
|
16691
|
+
.table-cellstyle td:last-child{
|
|
16692
|
+
padding-right: 0.75rem;
|
|
16693
|
+
}
|
|
16694
|
+
|
|
16695
|
+
.table-cellstyle td label{
|
|
16696
|
+
font-size: 0.813rem;
|
|
16697
|
+
line-height: 0.813rem;
|
|
16698
|
+
}
|
|
16699
|
+
|
|
16700
|
+
.table-cellstyle td::after{
|
|
16701
|
+
position: absolute;
|
|
16702
|
+
right: 0.625rem;
|
|
16703
|
+
top: 0.5rem;
|
|
16704
|
+
display: inline-block;
|
|
16705
|
+
height: 16px;
|
|
16706
|
+
width: 16px;
|
|
16707
|
+
content: "";
|
|
16708
|
+
-webkit-mask-repeat: no-repeat;
|
|
16709
|
+
mask-repeat: no-repeat;
|
|
16710
|
+
}
|
|
16711
|
+
|
|
16712
|
+
.table-cellstyle td.missing{
|
|
16713
|
+
background-color: transparent;
|
|
16714
|
+
font-style: italic;
|
|
16715
|
+
--tw-text-opacity: 1;
|
|
16716
|
+
color: rgb(191 193 197 / var(--tw-text-opacity, 1));
|
|
16717
|
+
}
|
|
16718
|
+
|
|
16719
|
+
.table-cellstyle td.inprogress{
|
|
16720
|
+
--tw-bg-opacity: 1;
|
|
16721
|
+
background-color: rgb(230 230 230 / var(--tw-bg-opacity, 1));
|
|
16722
|
+
padding-right: 2.25rem;
|
|
16723
|
+
font-style: italic;
|
|
16724
|
+
}
|
|
16725
|
+
|
|
16726
|
+
.table-cellstyle td.inprogress::after{
|
|
16727
|
+
--tw-bg-opacity: 1;
|
|
16728
|
+
background-color: rgb(95 101 109 / var(--tw-bg-opacity, 1));
|
|
16729
|
+
-webkit-mask-image: url("../../../images/clock.svg");
|
|
16730
|
+
mask-image: url("../../../images/clock.svg");
|
|
16731
|
+
}
|
|
16732
|
+
|
|
16733
|
+
.table-cellstyle td.completed{
|
|
16734
|
+
padding-right: 2rem;
|
|
16735
|
+
}
|
|
16736
|
+
|
|
16737
|
+
.table-cellstyle .completed::after{
|
|
16738
|
+
top: 0.625rem;
|
|
16739
|
+
right: 0.375rem;
|
|
16740
|
+
height: 0.625rem;
|
|
16741
|
+
--tw-bg-opacity: 1;
|
|
16742
|
+
background-color: rgb(140 189 36 / var(--tw-bg-opacity, 1));
|
|
16743
|
+
-webkit-mask-image: url("../../../images/check-thick.svg");
|
|
16744
|
+
mask-image: url("../../../images/check-thick.svg");
|
|
16745
|
+
}
|
|
16746
|
+
|
|
16747
|
+
.table-cellstyle td.cell-editable,
|
|
16748
|
+
.table-cellstyle td.cell-editable.missing,
|
|
16749
|
+
.table-cellstyle td.cell-editable.inprogress,
|
|
16750
|
+
.table-cellstyle td.cell-editable.completed{
|
|
16751
|
+
height: 100%;
|
|
16752
|
+
width: 100%;
|
|
16753
|
+
padding: 0px;
|
|
16754
|
+
word-break: break-all;
|
|
16755
|
+
}
|
|
16756
|
+
|
|
16757
|
+
.table-cellstyle td.cell-editable::after, .table-cellstyle td.cell-editable.missing::after, .table-cellstyle td.cell-editable.inprogress::after, .table-cellstyle td.cell-editable.completed::after {
|
|
16758
|
+
content: none;
|
|
16759
|
+
}
|
|
16760
|
+
|
|
16761
|
+
.cell-editable .btn{
|
|
16762
|
+
width: 30px;
|
|
16763
|
+
align-items: flex-start;
|
|
16764
|
+
justify-content: center;
|
|
16765
|
+
padding-left: 5px;
|
|
16766
|
+
padding-right: 5px;
|
|
16767
|
+
padding-top: 10px;
|
|
16768
|
+
padding-bottom: 10px;
|
|
16769
|
+
--tw-text-opacity: 1;
|
|
16770
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
16771
|
+
}
|
|
16772
|
+
|
|
16773
|
+
.cell-content-editable, a.cell-content-editable{
|
|
16774
|
+
display: flex;
|
|
16775
|
+
height: 100%;
|
|
16776
|
+
width: 100%;
|
|
16777
|
+
cursor: pointer;
|
|
16778
|
+
justify-content: space-between;
|
|
16779
|
+
padding-top: 0.375rem;
|
|
16780
|
+
padding-bottom: 0.375rem;
|
|
16781
|
+
padding-left: 0.625rem;
|
|
16782
|
+
padding-right: 2.25rem;
|
|
16783
|
+
font-weight: 400;
|
|
16784
|
+
--tw-text-opacity: 1;
|
|
16785
|
+
color: rgb(29 29 29 / var(--tw-text-opacity, 1));
|
|
16786
|
+
text-decoration-line: none;
|
|
16787
|
+
}
|
|
16788
|
+
|
|
16789
|
+
.cell-content-editable:hover, a.cell-content-editable:hover{
|
|
16790
|
+
--tw-bg-opacity: 1;
|
|
16791
|
+
background-color: rgb(33 190 244 / var(--tw-bg-opacity, 1));
|
|
16792
|
+
--tw-text-opacity: 1;
|
|
16793
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
16794
|
+
}
|
|
16795
|
+
|
|
16796
|
+
.cell-content-editable, a.cell-content-editable {
|
|
16797
|
+
word-break: break-word;
|
|
16798
|
+
}
|
|
16799
|
+
|
|
16800
|
+
.cell-content-editable::after, a.cell-content-editable::after{
|
|
16801
|
+
position: absolute;
|
|
16802
|
+
right: 0.625rem;
|
|
16803
|
+
top: 0.5rem;
|
|
16804
|
+
display: inline-block;
|
|
16805
|
+
height: 16px;
|
|
16806
|
+
width: 16px;
|
|
16807
|
+
--tw-bg-opacity: 1;
|
|
16808
|
+
background-color: rgb(35 106 132 / var(--tw-bg-opacity, 1));
|
|
16809
|
+
content: "";
|
|
16810
|
+
-webkit-mask-repeat: round;
|
|
16811
|
+
mask-repeat: round;
|
|
16812
|
+
-webkit-mask-image: url("../../../images/edit.svg");
|
|
16813
|
+
mask-image: url("../../../images/edit.svg");
|
|
16814
|
+
}
|
|
16815
|
+
|
|
16816
|
+
.cell-content-editable:hover::after, a.cell-content-editable.cell-content-editable:hover::after{
|
|
16817
|
+
--tw-bg-opacity: 1;
|
|
16818
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
16819
|
+
}
|
|
16820
|
+
|
|
16821
|
+
.cell-edit-state{
|
|
16822
|
+
display: flex;
|
|
16823
|
+
height: 100%;
|
|
16824
|
+
width: 100%;
|
|
16825
|
+
align-items: stretch;
|
|
16826
|
+
justify-content: space-between;
|
|
16827
|
+
border-width: 2px;
|
|
16828
|
+
--tw-border-opacity: 1;
|
|
16829
|
+
border-color: rgb(230 230 230 / var(--tw-border-opacity, 1));
|
|
16830
|
+
padding: 0px;
|
|
16831
|
+
}
|
|
16832
|
+
|
|
16833
|
+
.cell-edit-state .edit-form{
|
|
16834
|
+
display: flex;
|
|
16835
|
+
height: 100%;
|
|
16836
|
+
width: 100%;
|
|
16837
|
+
align-items: stretch;
|
|
16838
|
+
justify-content: space-between;
|
|
16839
|
+
}
|
|
16840
|
+
|
|
16841
|
+
.cell-edit-state textarea{
|
|
16842
|
+
min-height: 100%;
|
|
16843
|
+
width: 100%;
|
|
16844
|
+
border-radius: 0px;
|
|
16845
|
+
border-style: none;
|
|
16846
|
+
font-size: 0.813rem;
|
|
16847
|
+
line-height: 0.813rem;
|
|
16848
|
+
}
|
|
16849
|
+
|
|
16850
|
+
.cell-actions{
|
|
16851
|
+
display: flex;
|
|
16852
|
+
flex-direction: column;
|
|
16853
|
+
}
|
|
16854
|
+
|
|
16855
|
+
.cell-actions .btn{
|
|
16856
|
+
width: 30px;
|
|
16857
|
+
flex: 1 1 0%;
|
|
16858
|
+
align-items: center;
|
|
16859
|
+
border-radius: 0px;
|
|
16860
|
+
border-width: 0px;
|
|
16861
|
+
--tw-border-opacity: 1;
|
|
16862
|
+
border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
|
|
16863
|
+
}
|
|
16864
|
+
|
|
16865
|
+
.cell-actions .btn:first-child{
|
|
16866
|
+
border-bottom-width: 1px;
|
|
16867
|
+
}
|
|
16868
|
+
|
|
16869
|
+
/*////// Grid Tables //////*/
|
|
16870
|
+
|
|
16871
|
+
.table-grid{
|
|
16872
|
+
display: grid;
|
|
16873
|
+
min-width: 100%;
|
|
16874
|
+
grid-auto-flow: column;
|
|
16875
|
+
place-items: stretch;
|
|
16876
|
+
gap: 0.125rem;
|
|
16877
|
+
grid-auto-flow: row;
|
|
16878
|
+
}
|
|
16879
|
+
|
|
16880
|
+
.table-grid thead,
|
|
16881
|
+
.table-grid tbody,
|
|
16882
|
+
.table-grid tr {
|
|
16883
|
+
display: contents;
|
|
16884
|
+
}
|
|
16885
|
+
|
|
16886
|
+
.table-grid th,
|
|
16887
|
+
.table-grid td{
|
|
16888
|
+
height: 100%;
|
|
16889
|
+
width: 100%;
|
|
16890
|
+
white-space: normal;
|
|
16891
|
+
}
|
|
16892
|
+
|
|
16893
|
+
.table-grid th{
|
|
16894
|
+
display: flex;
|
|
16895
|
+
min-height: 2rem;
|
|
16896
|
+
align-items: center;
|
|
16897
|
+
justify-content: flex-start;
|
|
16898
|
+
}
|
|
16899
|
+
|
|
16900
|
+
.table-grid .cell-edit-state textarea{
|
|
16901
|
+
flex: 1 1 0%;
|
|
16902
|
+
}
|
|
16903
|
+
|
|
16904
|
+
/*////// Selectable cells //////*/
|
|
16905
|
+
|
|
16906
|
+
.table-cellstyle .cell-selectable{
|
|
16907
|
+
height: 100%;
|
|
16908
|
+
width: 100%;
|
|
16909
|
+
padding: 0px;
|
|
16910
|
+
}
|
|
16911
|
+
|
|
16912
|
+
.table-cellstyle .cell-selectable input{
|
|
16913
|
+
position: absolute;
|
|
16914
|
+
left: 0.625rem;
|
|
16915
|
+
top: 0.375rem;
|
|
16916
|
+
height: 1.25rem;
|
|
16917
|
+
width: 1.25rem;
|
|
16918
|
+
border-radius: 5px;
|
|
16919
|
+
border-width: 1px;
|
|
16920
|
+
--tw-border-opacity: 1;
|
|
16921
|
+
border-color: rgb(29 29 29 / var(--tw-border-opacity, 1));
|
|
16922
|
+
background-color: transparent;
|
|
16923
|
+
}
|
|
16924
|
+
|
|
16925
|
+
.table-cellstyle .cell-selectable label{
|
|
16926
|
+
display: block;
|
|
16927
|
+
height: 100%;
|
|
16928
|
+
width: 100%;
|
|
16929
|
+
cursor: pointer;
|
|
16930
|
+
padding-top: 0.375rem;
|
|
16931
|
+
padding-bottom: 0.375rem;
|
|
16932
|
+
padding-left: 2.5rem;
|
|
16933
|
+
padding-right: 2.5rem;
|
|
16934
|
+
}
|
|
16935
|
+
|
|
16936
|
+
.table-cellstyle .cell-selectable label:hover{
|
|
16937
|
+
--tw-bg-opacity: 1;
|
|
16938
|
+
background-color: rgb(33 190 244 / var(--tw-bg-opacity, 1));
|
|
16939
|
+
--tw-text-opacity: 1;
|
|
16940
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
16941
|
+
}
|
|
16444
16942
|
|
|
16445
|
-
.table
|
|
16446
|
-
.table thead th{
|
|
16447
|
-
border-bottom-width: 1px;
|
|
16943
|
+
.table-cellstyle .cell-selectable input[type=checkbox]:checked{
|
|
16448
16944
|
--tw-border-opacity: 1;
|
|
16449
|
-
border-color: rgb(
|
|
16450
|
-
|
|
16451
|
-
|
|
16452
|
-
|
|
16453
|
-
|
|
16454
|
-
|
|
16945
|
+
border-color: rgb(29 29 29 / var(--tw-border-opacity, 1));
|
|
16946
|
+
--tw-bg-opacity: 1;
|
|
16947
|
+
background-color: rgb(29 29 29 / var(--tw-bg-opacity, 1));
|
|
16948
|
+
--tw-text-opacity: 1;
|
|
16949
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
16950
|
+
background-image: none;
|
|
16455
16951
|
}
|
|
16456
16952
|
|
|
16457
|
-
.table
|
|
16458
|
-
|
|
16459
|
-
|
|
16953
|
+
.table-cellstyle .cell-selectable input[type=checkbox]:checked::after{
|
|
16954
|
+
display: block;
|
|
16955
|
+
height: 100%;
|
|
16956
|
+
width: 100%;
|
|
16957
|
+
--tw-bg-opacity: 1;
|
|
16958
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
16959
|
+
content: "";
|
|
16960
|
+
mask-image: url("../../../images/checkbox-background.svg");
|
|
16961
|
+
-webkit-mask-image: url("../../../images/checkbox-background.svg");
|
|
16962
|
+
-webkit-mask-repeat: no-repeat;
|
|
16963
|
+
mask-repeat: no-repeat;
|
|
16460
16964
|
}
|
|
16461
16965
|
|
|
16462
|
-
.
|
|
16463
|
-
|
|
16464
|
-
|
|
16966
|
+
.table-cellstyle .cell-selectable input:checked + label{
|
|
16967
|
+
--tw-bg-opacity: 1;
|
|
16968
|
+
background-color: rgb(35 106 132 / var(--tw-bg-opacity, 1));
|
|
16465
16969
|
--tw-text-opacity: 1;
|
|
16466
|
-
color: rgb(
|
|
16970
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
16467
16971
|
}
|
|
16468
16972
|
|
|
16469
|
-
.
|
|
16470
|
-
--tw-
|
|
16471
|
-
color: rgb(33 190 244 / var(--tw-
|
|
16973
|
+
.table-cellstyle .cell-selectable input:checked + label:hover{
|
|
16974
|
+
--tw-bg-opacity: 1;
|
|
16975
|
+
background-color: rgb(33 190 244 / var(--tw-bg-opacity, 1));
|
|
16472
16976
|
}
|
|
16473
16977
|
|
|
16474
|
-
.table-
|
|
16475
|
-
.table-
|
|
16476
|
-
|
|
16477
|
-
border: 0;
|
|
16978
|
+
.table-cellstyle td.cell-selectable.inprogress,
|
|
16979
|
+
.table-cellstyle td.cell-selectable.completed{
|
|
16980
|
+
padding-right: 0px;
|
|
16478
16981
|
}
|
|
16479
16982
|
|
|
16480
|
-
.table-
|
|
16481
|
-
|
|
16482
|
-
|
|
16483
|
-
}
|
|
16983
|
+
.table-cellstyle td.cell-selectable.inprogress::after, .table-cellstyle td.cell-selectable.completed::after {
|
|
16984
|
+
content: none;
|
|
16985
|
+
}
|
|
16484
16986
|
|
|
16485
|
-
.table-
|
|
16486
|
-
|
|
16487
|
-
|
|
16987
|
+
.table-cellstyle td.cell-selectable label::after{
|
|
16988
|
+
position: absolute;
|
|
16989
|
+
right: 0.625rem;
|
|
16990
|
+
top: 0.5rem;
|
|
16991
|
+
display: inline-block;
|
|
16992
|
+
height: 16px;
|
|
16993
|
+
width: 16px;
|
|
16994
|
+
content: "";
|
|
16995
|
+
-webkit-mask-repeat: no-repeat;
|
|
16996
|
+
mask-repeat: no-repeat;
|
|
16488
16997
|
}
|
|
16489
16998
|
|
|
16490
|
-
.table td.cell-
|
|
16491
|
-
|
|
16492
|
-
|
|
16999
|
+
.table-cellstyle td.cell-selectable.inprogress label::after{
|
|
17000
|
+
--tw-bg-opacity: 1;
|
|
17001
|
+
background-color: rgb(95 101 109 / var(--tw-bg-opacity, 1));
|
|
17002
|
+
-webkit-mask-image: url("../../../images/clock.svg");
|
|
17003
|
+
mask-image: url("../../../images/clock.svg");
|
|
16493
17004
|
}
|
|
16494
17005
|
|
|
16495
|
-
.table .
|
|
16496
|
-
|
|
16497
|
-
|
|
17006
|
+
.table-cellstyle .cell-selectable.completed label::after{
|
|
17007
|
+
top: 0.625rem;
|
|
17008
|
+
right: 0.375rem;
|
|
17009
|
+
height: 0.625rem;
|
|
16498
17010
|
--tw-bg-opacity: 1;
|
|
16499
|
-
background-color: rgb(
|
|
16500
|
-
|
|
16501
|
-
|
|
17011
|
+
background-color: rgb(140 189 36 / var(--tw-bg-opacity, 1));
|
|
17012
|
+
-webkit-mask-image: url("../../../images/check-thick.svg");
|
|
17013
|
+
mask-image: url("../../../images/check-thick.svg");
|
|
16502
17014
|
}
|
|
16503
17015
|
|
|
16504
|
-
.table
|
|
16505
|
-
|
|
17016
|
+
.table-cellstyle td.cell-selectable.inprogress label:hover::after,
|
|
17017
|
+
.table-cellstyle td.cell-selectable.completed label:hover::after,
|
|
17018
|
+
.table-cellstyle .cell-selectable.inprogress input:checked + label::after,
|
|
17019
|
+
.table-cellstyle .cell-selectable.completed input:checked + label::after{
|
|
16506
17020
|
--tw-bg-opacity: 1;
|
|
16507
|
-
background-color: rgb(
|
|
16508
|
-
--tw-text-opacity: 1;
|
|
16509
|
-
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
17021
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
16510
17022
|
}
|
|
16511
17023
|
|
|
16512
17024
|
aside.metasidebar{
|
|
@@ -19063,10 +19575,18 @@ details.card-section[open] .card-section-header {
|
|
|
19063
19575
|
margin-bottom: 30px;
|
|
19064
19576
|
}
|
|
19065
19577
|
|
|
19578
|
+
.mb-xl{
|
|
19579
|
+
margin-bottom: 60px;
|
|
19580
|
+
}
|
|
19581
|
+
|
|
19066
19582
|
.mb-xs{
|
|
19067
19583
|
margin-bottom: 10px;
|
|
19068
19584
|
}
|
|
19069
19585
|
|
|
19586
|
+
.mb-xxl{
|
|
19587
|
+
margin-bottom: 90px;
|
|
19588
|
+
}
|
|
19589
|
+
|
|
19070
19590
|
.mb-xxs{
|
|
19071
19591
|
margin-bottom: 5px;
|
|
19072
19592
|
}
|
|
@@ -19087,10 +19607,30 @@ details.card-section[open] .card-section-header {
|
|
|
19087
19607
|
margin-left: 20px;
|
|
19088
19608
|
}
|
|
19089
19609
|
|
|
19610
|
+
.ml-sm{
|
|
19611
|
+
margin-left: 15px;
|
|
19612
|
+
}
|
|
19613
|
+
|
|
19614
|
+
.ml-spacing{
|
|
19615
|
+
margin-left: 30px;
|
|
19616
|
+
}
|
|
19617
|
+
|
|
19618
|
+
.ml-xl{
|
|
19619
|
+
margin-left: 60px;
|
|
19620
|
+
}
|
|
19621
|
+
|
|
19090
19622
|
.ml-xs{
|
|
19091
19623
|
margin-left: 10px;
|
|
19092
19624
|
}
|
|
19093
19625
|
|
|
19626
|
+
.ml-xxl{
|
|
19627
|
+
margin-left: 90px;
|
|
19628
|
+
}
|
|
19629
|
+
|
|
19630
|
+
.ml-xxs{
|
|
19631
|
+
margin-left: 5px;
|
|
19632
|
+
}
|
|
19633
|
+
|
|
19094
19634
|
.mr-0{
|
|
19095
19635
|
margin-right: 0px;
|
|
19096
19636
|
}
|
|
@@ -19099,10 +19639,34 @@ details.card-section[open] .card-section-header {
|
|
|
19099
19639
|
margin-right: 8px;
|
|
19100
19640
|
}
|
|
19101
19641
|
|
|
19642
|
+
.mr-lg{
|
|
19643
|
+
margin-right: 50px;
|
|
19644
|
+
}
|
|
19645
|
+
|
|
19646
|
+
.mr-md{
|
|
19647
|
+
margin-right: 20px;
|
|
19648
|
+
}
|
|
19649
|
+
|
|
19650
|
+
.mr-sm{
|
|
19651
|
+
margin-right: 15px;
|
|
19652
|
+
}
|
|
19653
|
+
|
|
19654
|
+
.mr-spacing{
|
|
19655
|
+
margin-right: 30px;
|
|
19656
|
+
}
|
|
19657
|
+
|
|
19658
|
+
.mr-xl{
|
|
19659
|
+
margin-right: 60px;
|
|
19660
|
+
}
|
|
19661
|
+
|
|
19102
19662
|
.mr-xs{
|
|
19103
19663
|
margin-right: 10px;
|
|
19104
19664
|
}
|
|
19105
19665
|
|
|
19666
|
+
.mr-xxl{
|
|
19667
|
+
margin-right: 90px;
|
|
19668
|
+
}
|
|
19669
|
+
|
|
19106
19670
|
.mr-xxs{
|
|
19107
19671
|
margin-right: 5px;
|
|
19108
19672
|
}
|
|
@@ -19119,6 +19683,10 @@ details.card-section[open] .card-section-header {
|
|
|
19119
19683
|
margin-top: 1.25rem;
|
|
19120
19684
|
}
|
|
19121
19685
|
|
|
19686
|
+
.mt-lg{
|
|
19687
|
+
margin-top: 50px;
|
|
19688
|
+
}
|
|
19689
|
+
|
|
19122
19690
|
.mt-md{
|
|
19123
19691
|
margin-top: 20px;
|
|
19124
19692
|
}
|
|
@@ -19127,10 +19695,26 @@ details.card-section[open] .card-section-header {
|
|
|
19127
19695
|
margin-top: 15px;
|
|
19128
19696
|
}
|
|
19129
19697
|
|
|
19698
|
+
.mt-spacing{
|
|
19699
|
+
margin-top: 30px;
|
|
19700
|
+
}
|
|
19701
|
+
|
|
19702
|
+
.mt-xl{
|
|
19703
|
+
margin-top: 60px;
|
|
19704
|
+
}
|
|
19705
|
+
|
|
19130
19706
|
.mt-xs{
|
|
19131
19707
|
margin-top: 10px;
|
|
19132
19708
|
}
|
|
19133
19709
|
|
|
19710
|
+
.mt-xxl{
|
|
19711
|
+
margin-top: 90px;
|
|
19712
|
+
}
|
|
19713
|
+
|
|
19714
|
+
.mt-xxs{
|
|
19715
|
+
margin-top: 5px;
|
|
19716
|
+
}
|
|
19717
|
+
|
|
19134
19718
|
.block{
|
|
19135
19719
|
display: block;
|
|
19136
19720
|
}
|
|
@@ -19191,10 +19775,34 @@ details.card-section[open] .card-section-header {
|
|
|
19191
19775
|
height: 30px;
|
|
19192
19776
|
}
|
|
19193
19777
|
|
|
19778
|
+
.h-spacing-2xl{
|
|
19779
|
+
height: 120px;
|
|
19780
|
+
}
|
|
19781
|
+
|
|
19194
19782
|
.h-spacing-3xl{
|
|
19195
19783
|
height: 180px;
|
|
19196
19784
|
}
|
|
19197
19785
|
|
|
19786
|
+
.h-spacing-4xl{
|
|
19787
|
+
height: 240px;
|
|
19788
|
+
}
|
|
19789
|
+
|
|
19790
|
+
.h-spacing-5xl{
|
|
19791
|
+
height: 300px;
|
|
19792
|
+
}
|
|
19793
|
+
|
|
19794
|
+
.h-spacing-6xl{
|
|
19795
|
+
height: 360px;
|
|
19796
|
+
}
|
|
19797
|
+
|
|
19798
|
+
.h-spacing-7xl{
|
|
19799
|
+
height: 420px;
|
|
19800
|
+
}
|
|
19801
|
+
|
|
19802
|
+
.h-spacing-8xl{
|
|
19803
|
+
height: 480px;
|
|
19804
|
+
}
|
|
19805
|
+
|
|
19198
19806
|
.h-xl{
|
|
19199
19807
|
height: 60px;
|
|
19200
19808
|
}
|
|
@@ -19231,10 +19839,30 @@ details.card-section[open] .card-section-header {
|
|
|
19231
19839
|
width: 30px;
|
|
19232
19840
|
}
|
|
19233
19841
|
|
|
19842
|
+
.w-spacing-2xl{
|
|
19843
|
+
width: 120px;
|
|
19844
|
+
}
|
|
19845
|
+
|
|
19234
19846
|
.w-spacing-3xl{
|
|
19235
19847
|
width: 180px;
|
|
19236
19848
|
}
|
|
19237
19849
|
|
|
19850
|
+
.w-spacing-4xl{
|
|
19851
|
+
width: 240px;
|
|
19852
|
+
}
|
|
19853
|
+
|
|
19854
|
+
.w-spacing-5xl{
|
|
19855
|
+
width: 300px;
|
|
19856
|
+
}
|
|
19857
|
+
|
|
19858
|
+
.w-spacing-6xl{
|
|
19859
|
+
width: 360px;
|
|
19860
|
+
}
|
|
19861
|
+
|
|
19862
|
+
.w-spacing-7xl{
|
|
19863
|
+
width: 420px;
|
|
19864
|
+
}
|
|
19865
|
+
|
|
19238
19866
|
.w-spacing-8xl{
|
|
19239
19867
|
width: 480px;
|
|
19240
19868
|
}
|
|
@@ -19255,6 +19883,14 @@ details.card-section[open] .card-section-header {
|
|
|
19255
19883
|
width: 5px;
|
|
19256
19884
|
}
|
|
19257
19885
|
|
|
19886
|
+
.min-w-12{
|
|
19887
|
+
min-width: 3rem;
|
|
19888
|
+
}
|
|
19889
|
+
|
|
19890
|
+
.min-w-spacing-2xl{
|
|
19891
|
+
min-width: 150px;
|
|
19892
|
+
}
|
|
19893
|
+
|
|
19258
19894
|
.max-w-capped{
|
|
19259
19895
|
max-width: 700px;
|
|
19260
19896
|
}
|
|
@@ -19303,6 +19939,10 @@ details.card-section[open] .card-section-header {
|
|
|
19303
19939
|
grid-template-columns: auto 1fr;
|
|
19304
19940
|
}
|
|
19305
19941
|
|
|
19942
|
+
.flex-row{
|
|
19943
|
+
flex-direction: row;
|
|
19944
|
+
}
|
|
19945
|
+
|
|
19306
19946
|
.flex-col{
|
|
19307
19947
|
flex-direction: column;
|
|
19308
19948
|
}
|
|
@@ -19311,6 +19951,10 @@ details.card-section[open] .card-section-header {
|
|
|
19311
19951
|
place-items: start;
|
|
19312
19952
|
}
|
|
19313
19953
|
|
|
19954
|
+
.items-start{
|
|
19955
|
+
align-items: flex-start;
|
|
19956
|
+
}
|
|
19957
|
+
|
|
19314
19958
|
.items-center{
|
|
19315
19959
|
align-items: center;
|
|
19316
19960
|
}
|
|
@@ -19347,18 +19991,34 @@ details.card-section[open] .card-section-header {
|
|
|
19347
19991
|
gap: 20px;
|
|
19348
19992
|
}
|
|
19349
19993
|
|
|
19994
|
+
.space-y-10 > :not([hidden]) ~ :not([hidden]){
|
|
19995
|
+
--tw-space-y-reverse: 0;
|
|
19996
|
+
margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
19997
|
+
margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
|
|
19998
|
+
}
|
|
19999
|
+
|
|
19350
20000
|
.space-y-12 > :not([hidden]) ~ :not([hidden]){
|
|
19351
20001
|
--tw-space-y-reverse: 0;
|
|
19352
20002
|
margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
|
|
19353
20003
|
margin-bottom: calc(3rem * var(--tw-space-y-reverse));
|
|
19354
20004
|
}
|
|
19355
20005
|
|
|
20006
|
+
.space-y-5 > :not([hidden]) ~ :not([hidden]){
|
|
20007
|
+
--tw-space-y-reverse: 0;
|
|
20008
|
+
margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
20009
|
+
margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
|
|
20010
|
+
}
|
|
20011
|
+
|
|
19356
20012
|
.space-y-6 > :not([hidden]) ~ :not([hidden]){
|
|
19357
20013
|
--tw-space-y-reverse: 0;
|
|
19358
20014
|
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
19359
20015
|
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
19360
20016
|
}
|
|
19361
20017
|
|
|
20018
|
+
.overflow-x-auto{
|
|
20019
|
+
overflow-x: auto;
|
|
20020
|
+
}
|
|
20021
|
+
|
|
19362
20022
|
.truncate{
|
|
19363
20023
|
overflow: hidden;
|
|
19364
20024
|
text-overflow: ellipsis;
|
|
@@ -19634,18 +20294,138 @@ details.card-section[open] .card-section-header {
|
|
|
19634
20294
|
padding-bottom: 2.5rem;
|
|
19635
20295
|
}
|
|
19636
20296
|
|
|
20297
|
+
.pb-lg{
|
|
20298
|
+
padding-bottom: 50px;
|
|
20299
|
+
}
|
|
20300
|
+
|
|
20301
|
+
.pb-md{
|
|
20302
|
+
padding-bottom: 20px;
|
|
20303
|
+
}
|
|
20304
|
+
|
|
19637
20305
|
.pb-sm{
|
|
19638
20306
|
padding-bottom: 15px;
|
|
19639
20307
|
}
|
|
19640
20308
|
|
|
20309
|
+
.pb-spacing{
|
|
20310
|
+
padding-bottom: 30px;
|
|
20311
|
+
}
|
|
20312
|
+
|
|
20313
|
+
.pb-xl{
|
|
20314
|
+
padding-bottom: 60px;
|
|
20315
|
+
}
|
|
20316
|
+
|
|
20317
|
+
.pb-xs{
|
|
20318
|
+
padding-bottom: 10px;
|
|
20319
|
+
}
|
|
20320
|
+
|
|
20321
|
+
.pb-xxl{
|
|
20322
|
+
padding-bottom: 90px;
|
|
20323
|
+
}
|
|
20324
|
+
|
|
20325
|
+
.pb-xxs{
|
|
20326
|
+
padding-bottom: 5px;
|
|
20327
|
+
}
|
|
20328
|
+
|
|
20329
|
+
.pl-lg{
|
|
20330
|
+
padding-left: 50px;
|
|
20331
|
+
}
|
|
20332
|
+
|
|
19641
20333
|
.pl-md{
|
|
19642
20334
|
padding-left: 20px;
|
|
19643
20335
|
}
|
|
19644
20336
|
|
|
20337
|
+
.pl-sm{
|
|
20338
|
+
padding-left: 15px;
|
|
20339
|
+
}
|
|
20340
|
+
|
|
20341
|
+
.pl-spacing{
|
|
20342
|
+
padding-left: 30px;
|
|
20343
|
+
}
|
|
20344
|
+
|
|
20345
|
+
.pl-xl{
|
|
20346
|
+
padding-left: 60px;
|
|
20347
|
+
}
|
|
20348
|
+
|
|
20349
|
+
.pl-xs{
|
|
20350
|
+
padding-left: 10px;
|
|
20351
|
+
}
|
|
20352
|
+
|
|
20353
|
+
.pl-xxl{
|
|
20354
|
+
padding-left: 90px;
|
|
20355
|
+
}
|
|
20356
|
+
|
|
20357
|
+
.pl-xxs{
|
|
20358
|
+
padding-left: 5px;
|
|
20359
|
+
}
|
|
20360
|
+
|
|
20361
|
+
.pr-lg{
|
|
20362
|
+
padding-right: 50px;
|
|
20363
|
+
}
|
|
20364
|
+
|
|
20365
|
+
.pr-md{
|
|
20366
|
+
padding-right: 20px;
|
|
20367
|
+
}
|
|
20368
|
+
|
|
20369
|
+
.pr-sm{
|
|
20370
|
+
padding-right: 15px;
|
|
20371
|
+
}
|
|
20372
|
+
|
|
20373
|
+
.pr-spacing{
|
|
20374
|
+
padding-right: 30px;
|
|
20375
|
+
}
|
|
20376
|
+
|
|
20377
|
+
.pr-xl{
|
|
20378
|
+
padding-right: 60px;
|
|
20379
|
+
}
|
|
20380
|
+
|
|
20381
|
+
.pr-xs{
|
|
20382
|
+
padding-right: 10px;
|
|
20383
|
+
}
|
|
20384
|
+
|
|
20385
|
+
.pr-xxl{
|
|
20386
|
+
padding-right: 90px;
|
|
20387
|
+
}
|
|
20388
|
+
|
|
20389
|
+
.pr-xxs{
|
|
20390
|
+
padding-right: 5px;
|
|
20391
|
+
}
|
|
20392
|
+
|
|
20393
|
+
.pt-5{
|
|
20394
|
+
padding-top: 1.25rem;
|
|
20395
|
+
}
|
|
20396
|
+
|
|
20397
|
+
.pt-lg{
|
|
20398
|
+
padding-top: 50px;
|
|
20399
|
+
}
|
|
20400
|
+
|
|
20401
|
+
.pt-md{
|
|
20402
|
+
padding-top: 20px;
|
|
20403
|
+
}
|
|
20404
|
+
|
|
20405
|
+
.pt-sm{
|
|
20406
|
+
padding-top: 15px;
|
|
20407
|
+
}
|
|
20408
|
+
|
|
20409
|
+
.pt-spacing{
|
|
20410
|
+
padding-top: 30px;
|
|
20411
|
+
}
|
|
20412
|
+
|
|
20413
|
+
.pt-xl{
|
|
20414
|
+
padding-top: 60px;
|
|
20415
|
+
}
|
|
20416
|
+
|
|
19645
20417
|
.pt-xs{
|
|
19646
20418
|
padding-top: 10px;
|
|
19647
20419
|
}
|
|
19648
20420
|
|
|
20421
|
+
.pt-xxl{
|
|
20422
|
+
padding-top: 90px;
|
|
20423
|
+
}
|
|
20424
|
+
|
|
20425
|
+
.pt-xxs{
|
|
20426
|
+
padding-top: 5px;
|
|
20427
|
+
}
|
|
20428
|
+
|
|
19649
20429
|
.text-center{
|
|
19650
20430
|
text-align: center;
|
|
19651
20431
|
}
|