@pmidc/upyog-css 1.2.36-dev.1.20 → 1.2.36-dev.1.21
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/dist/index.css +31 -13
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/card.scss +2 -2
- package/src/components/table.scss +38 -13
package/package.json
CHANGED
package/src/components/card.scss
CHANGED
|
@@ -586,12 +586,12 @@ button.card-link.submit-bar {
|
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
.card-sub-header {
|
|
589
|
-
margin-bottom:
|
|
589
|
+
margin-bottom: 24px !important;
|
|
590
590
|
font-size: 18px;
|
|
591
591
|
}
|
|
592
592
|
|
|
593
593
|
.employee-card-sub-header {
|
|
594
|
-
margin-bottom:
|
|
594
|
+
margin-bottom: 24px !important;
|
|
595
595
|
font-size: 18px;
|
|
596
596
|
}
|
|
597
597
|
|
|
@@ -618,6 +618,29 @@ table tbody tr:nth-child(even) {
|
|
|
618
618
|
max-width: 400px;
|
|
619
619
|
}
|
|
620
620
|
|
|
621
|
+
.custom-fee-table td,
|
|
622
|
+
.inspection-report-table td {
|
|
623
|
+
padding-top: 2px !important;
|
|
624
|
+
padding-bottom: 2px !important;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.checklist-document-table td {
|
|
628
|
+
padding-top: 8px !important;
|
|
629
|
+
padding-bottom: 8px !important;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.custom-fee-table textarea,
|
|
633
|
+
.checklist-document-table textarea,
|
|
634
|
+
.inspection-report-table textarea {
|
|
635
|
+
min-height: 40px !important;
|
|
636
|
+
padding: 6px 10px !important;
|
|
637
|
+
overflow: hidden;
|
|
638
|
+
max-height: 1500px;
|
|
639
|
+
resize: vertical;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
621
644
|
.customTable tr {
|
|
622
645
|
transition: all 0.2s ease;
|
|
623
646
|
}
|
|
@@ -639,6 +662,21 @@ table tbody tr:nth-child(even) {
|
|
|
639
662
|
background-color: unset;
|
|
640
663
|
}
|
|
641
664
|
|
|
665
|
+
.obps-documents-table th:nth-child(1),
|
|
666
|
+
.obps-documents-table td:nth-child(1) {
|
|
667
|
+
width: 8% !important;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.obps-documents-table th:nth-child(2),
|
|
671
|
+
.obps-documents-table td:nth-child(2) {
|
|
672
|
+
width: 65% !important;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.obps-documents-table th:nth-child(3),
|
|
676
|
+
.obps-documents-table td:nth-child(3) {
|
|
677
|
+
width: 27% !important;
|
|
678
|
+
}
|
|
679
|
+
|
|
642
680
|
/* ============================================
|
|
643
681
|
RESPONSIVE TABLE STYLES
|
|
644
682
|
============================================ */
|
|
@@ -854,17 +892,4 @@ table tbody tr:nth-child(even) {
|
|
|
854
892
|
height: 20px;
|
|
855
893
|
}
|
|
856
894
|
|
|
857
|
-
.obps-documents-table th:nth-child(1),
|
|
858
|
-
.obps-documents-table td:nth-child(1) {
|
|
859
|
-
width: 8% !important;
|
|
860
|
-
}
|
|
861
895
|
|
|
862
|
-
.obps-documents-table th:nth-child(2),
|
|
863
|
-
.obps-documents-table td:nth-child(2) {
|
|
864
|
-
width: 65% !important;
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
.obps-documents-table th:nth-child(3),
|
|
868
|
-
.obps-documents-table td:nth-child(3) {
|
|
869
|
-
width: 28% !important;
|
|
870
|
-
}
|