@pmidc/upyog-css 1.2.32 → 1.2.34
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 +269 -8
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/table.scss +2 -1
- package/src/index.scss +278 -4
package/dist/index.css
CHANGED
|
@@ -4217,9 +4217,10 @@ body {
|
|
|
4217
4217
|
font-size: 12px; }
|
|
4218
4218
|
|
|
4219
4219
|
.customTable td, .customTable th {
|
|
4220
|
-
text-align:
|
|
4220
|
+
text-align: justify;
|
|
4221
4221
|
border-bottom: 1px solid #e1e8f0;
|
|
4222
|
-
padding: 14px 16px;
|
|
4222
|
+
padding: 14px 16px;
|
|
4223
|
+
max-width: 400px; }
|
|
4223
4224
|
|
|
4224
4225
|
.customTable tr {
|
|
4225
4226
|
-webkit-transition: all .2s ease;
|
|
@@ -21212,17 +21213,138 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21212
21213
|
.custom-fee-history-label-value {
|
|
21213
21214
|
word-break: break-word; }
|
|
21214
21215
|
|
|
21216
|
+
.custom-fix-fee-history-wrapper {
|
|
21217
|
+
margin-top: 16px; }
|
|
21218
|
+
|
|
21219
|
+
.custom-fix-fee-history-toggle {
|
|
21220
|
+
display: -webkit-box;
|
|
21221
|
+
display: -ms-flexbox;
|
|
21222
|
+
display: flex;
|
|
21223
|
+
-webkit-box-align: center;
|
|
21224
|
+
-ms-flex-align: center;
|
|
21225
|
+
align-items: center;
|
|
21226
|
+
cursor: pointer;
|
|
21227
|
+
padding: 12px 0;
|
|
21228
|
+
border-bottom: 1px solid #ddd; }
|
|
21229
|
+
|
|
21230
|
+
.custom-fix-fee-history-toggle-text {
|
|
21231
|
+
font-weight: 700;
|
|
21232
|
+
font-size: 16px;
|
|
21233
|
+
-webkit-box-flex: 1;
|
|
21234
|
+
-ms-flex: 1;
|
|
21235
|
+
flex: 1; }
|
|
21236
|
+
|
|
21237
|
+
.custom-fix-fee-history-toggle-icon {
|
|
21238
|
+
font-size: 18px;
|
|
21239
|
+
font-weight: 700; }
|
|
21240
|
+
|
|
21241
|
+
.custom-fix-fee-history-table-container {
|
|
21242
|
+
overflow-x: auto;
|
|
21243
|
+
margin-top: 16px; }
|
|
21244
|
+
|
|
21245
|
+
.custom-fix-fee-history-table {
|
|
21246
|
+
width: 100%;
|
|
21247
|
+
border-collapse: collapse;
|
|
21248
|
+
min-width: 600px; }
|
|
21249
|
+
|
|
21250
|
+
.custom-fix-fee-history-table-header {
|
|
21251
|
+
min-width: 140px; }
|
|
21252
|
+
|
|
21253
|
+
.custom-fix-fee-history-table-header, .custom-fix-fee-history-table-header-fee {
|
|
21254
|
+
padding: 8px;
|
|
21255
|
+
border: 1px solid #ddd;
|
|
21256
|
+
font-weight: 700;
|
|
21257
|
+
background-color: #1f3a9f;
|
|
21258
|
+
color: #fff; }
|
|
21259
|
+
|
|
21260
|
+
.custom-fix-fee-history-table-header-fee {
|
|
21261
|
+
min-width: 150px; }
|
|
21262
|
+
|
|
21263
|
+
.custom-fix-fee-history-table-cell-label {
|
|
21264
|
+
padding: 8px;
|
|
21265
|
+
border: 1px solid #ddd;
|
|
21266
|
+
font-weight: 700;
|
|
21267
|
+
background-color: #f9f9f9; }
|
|
21268
|
+
|
|
21269
|
+
.custom-fix-fee-history-table-cell-value {
|
|
21270
|
+
padding: 8px;
|
|
21271
|
+
border: 1px solid #ddd; }
|
|
21272
|
+
|
|
21273
|
+
.custom-fix-fee-history-table-cell-separator {
|
|
21274
|
+
font-weight: 700;
|
|
21275
|
+
background-color: #f9f9f9; }
|
|
21276
|
+
|
|
21277
|
+
.custom-fix-fee-history-table-cell-separator, .custom-fix-fee-history-table-cell-separator-value {
|
|
21278
|
+
padding: 8px;
|
|
21279
|
+
border: 1px solid #ddd;
|
|
21280
|
+
border-bottom: 3px solid #999; }
|
|
21281
|
+
|
|
21282
|
+
.custom-fix-fee-history-table-cell-separator-last {
|
|
21283
|
+
font-weight: 700;
|
|
21284
|
+
background-color: #f9f9f9; }
|
|
21285
|
+
|
|
21286
|
+
.custom-fix-fee-history-table-cell-separator-last, .custom-fix-fee-history-table-cell-separator-value-last {
|
|
21287
|
+
padding: 8px;
|
|
21288
|
+
border: 1px solid #ddd;
|
|
21289
|
+
border-bottom: none; }
|
|
21290
|
+
|
|
21215
21291
|
.custom-fee-table-input {
|
|
21216
21292
|
width: 100%;
|
|
21217
21293
|
border-radius: 4px;
|
|
21218
|
-
font-size:
|
|
21294
|
+
font-size: 15px;
|
|
21219
21295
|
-webkit-box-sizing: border-box;
|
|
21220
21296
|
box-sizing: border-box; }
|
|
21221
21297
|
|
|
21222
|
-
.custom-fee-
|
|
21298
|
+
.custom-fee-table-textarea {
|
|
21299
|
+
min-height: 60px;
|
|
21300
|
+
max-height: 240px;
|
|
21301
|
+
word-wrap: break-word;
|
|
21302
|
+
white-space: pre-wrap;
|
|
21303
|
+
resize: vertical;
|
|
21304
|
+
padding: 10px 12px;
|
|
21305
|
+
border: 1px solid #ccc;
|
|
21306
|
+
border-radius: 4px;
|
|
21307
|
+
font-size: 15px;
|
|
21308
|
+
line-height: 1.5;
|
|
21309
|
+
-webkit-transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21310
|
+
transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21311
|
+
transition: border-color .2s ease,box-shadow .2s ease;
|
|
21312
|
+
transition: border-color .2s ease,box-shadow .2s ease,-webkit-box-shadow .2s ease; }
|
|
21313
|
+
|
|
21314
|
+
.custom-fee-table-textarea:focus {
|
|
21315
|
+
outline: none;
|
|
21316
|
+
border-color: #1e3a8a;
|
|
21317
|
+
-webkit-box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
|
|
21318
|
+
box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1); }
|
|
21319
|
+
|
|
21320
|
+
.custom-fee-table-textarea:disabled {
|
|
21321
|
+
background-color: #f5f5f5;
|
|
21322
|
+
color: #999;
|
|
21323
|
+
cursor: not-allowed; }
|
|
21324
|
+
|
|
21325
|
+
.custom-fee-remark-display {
|
|
21326
|
+
padding: 10px 12px;
|
|
21327
|
+
border: 1px solid #e0e0e0;
|
|
21328
|
+
border-radius: 4px;
|
|
21329
|
+
background-color: #f9f9f9;
|
|
21330
|
+
font-size: 15px;
|
|
21331
|
+
line-height: 1.5;
|
|
21332
|
+
word-wrap: break-word;
|
|
21333
|
+
white-space: pre-wrap;
|
|
21334
|
+
max-height: 240px;
|
|
21335
|
+
overflow-y: auto;
|
|
21336
|
+
min-height: 40px;
|
|
21337
|
+
-webkit-box-align: start;
|
|
21338
|
+
-ms-flex-align: start;
|
|
21339
|
+
align-items: flex-start;
|
|
21340
|
+
color: #333; }
|
|
21341
|
+
|
|
21342
|
+
.custom-fee-mobile-cards, .custom-fee-remark-display {
|
|
21223
21343
|
display: -webkit-box;
|
|
21224
21344
|
display: -ms-flexbox;
|
|
21225
|
-
display: flex;
|
|
21345
|
+
display: flex; }
|
|
21346
|
+
|
|
21347
|
+
.custom-fee-mobile-cards {
|
|
21226
21348
|
-webkit-box-orient: vertical;
|
|
21227
21349
|
-webkit-box-direction: normal;
|
|
21228
21350
|
-ms-flex-direction: column;
|
|
@@ -21263,13 +21385,13 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21263
21385
|
|
|
21264
21386
|
.custom-fee-card-type {
|
|
21265
21387
|
font-weight: 700;
|
|
21266
|
-
font-size:
|
|
21388
|
+
font-size: 15px;
|
|
21267
21389
|
color: #1a1a1a;
|
|
21268
21390
|
text-transform: capitalize;
|
|
21269
21391
|
letter-spacing: .3px; }
|
|
21270
21392
|
|
|
21271
21393
|
.custom-fee-card-original-amount {
|
|
21272
|
-
font-size:
|
|
21394
|
+
font-size: 15px;
|
|
21273
21395
|
color: #888;
|
|
21274
21396
|
font-weight: 500; }
|
|
21275
21397
|
|
|
@@ -21515,7 +21637,8 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21515
21637
|
|
|
21516
21638
|
.checklist-table-cell-doc-name {
|
|
21517
21639
|
font-size: 16px;
|
|
21518
|
-
min-width: 150px;
|
|
21640
|
+
min-width: 150px;
|
|
21641
|
+
max-width: 340px; }
|
|
21519
21642
|
|
|
21520
21643
|
.checklist-table-cell-file {
|
|
21521
21644
|
min-width: 100px; }
|
|
@@ -21531,6 +21654,144 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21531
21654
|
-webkit-box-sizing: border-box;
|
|
21532
21655
|
box-sizing: border-box; }
|
|
21533
21656
|
|
|
21657
|
+
.checklist-mobile-cards {
|
|
21658
|
+
display: -webkit-box;
|
|
21659
|
+
display: -ms-flexbox;
|
|
21660
|
+
display: flex;
|
|
21661
|
+
-webkit-box-orient: vertical;
|
|
21662
|
+
-webkit-box-direction: normal;
|
|
21663
|
+
-ms-flex-direction: column;
|
|
21664
|
+
flex-direction: column;
|
|
21665
|
+
grid-gap: 10px;
|
|
21666
|
+
gap: 10px;
|
|
21667
|
+
padding: 0; }
|
|
21668
|
+
|
|
21669
|
+
.checklist-mobile-card {
|
|
21670
|
+
border-bottom: 1px solid #e0e0e0;
|
|
21671
|
+
padding: 12px 0; }
|
|
21672
|
+
|
|
21673
|
+
.checklist-card-header {
|
|
21674
|
+
display: -webkit-box;
|
|
21675
|
+
display: -ms-flexbox;
|
|
21676
|
+
display: flex;
|
|
21677
|
+
grid-gap: 8px;
|
|
21678
|
+
gap: 8px;
|
|
21679
|
+
margin-bottom: 8px;
|
|
21680
|
+
-webkit-box-align: center;
|
|
21681
|
+
-ms-flex-align: center;
|
|
21682
|
+
align-items: center;
|
|
21683
|
+
margin-left: 10px; }
|
|
21684
|
+
|
|
21685
|
+
.checklist-card-sr-no {
|
|
21686
|
+
font-weight: 600;
|
|
21687
|
+
font-size: 14px;
|
|
21688
|
+
color: #333;
|
|
21689
|
+
min-width: 20px; }
|
|
21690
|
+
|
|
21691
|
+
.checklist-card-doc-name {
|
|
21692
|
+
font-weight: 600;
|
|
21693
|
+
font-size: 13px;
|
|
21694
|
+
color: #333;
|
|
21695
|
+
-webkit-box-flex: 1;
|
|
21696
|
+
-ms-flex: 1;
|
|
21697
|
+
flex: 1; }
|
|
21698
|
+
|
|
21699
|
+
.checklist-card-content {
|
|
21700
|
+
grid-gap: 8px;
|
|
21701
|
+
gap: 8px;
|
|
21702
|
+
margin-left: 28px; }
|
|
21703
|
+
|
|
21704
|
+
.checklist-card-content, .checklist-card-row {
|
|
21705
|
+
display: -webkit-box;
|
|
21706
|
+
display: -ms-flexbox;
|
|
21707
|
+
display: flex;
|
|
21708
|
+
-webkit-box-orient: vertical;
|
|
21709
|
+
-webkit-box-direction: normal;
|
|
21710
|
+
-ms-flex-direction: column;
|
|
21711
|
+
flex-direction: column; }
|
|
21712
|
+
|
|
21713
|
+
.checklist-card-row {
|
|
21714
|
+
grid-gap: 4px;
|
|
21715
|
+
gap: 4px; }
|
|
21716
|
+
|
|
21717
|
+
.checklist-card-label {
|
|
21718
|
+
font-weight: 500;
|
|
21719
|
+
font-size: 11px;
|
|
21720
|
+
color: #666;
|
|
21721
|
+
text-transform: uppercase;
|
|
21722
|
+
letter-spacing: .3px; }
|
|
21723
|
+
|
|
21724
|
+
.checklist-card-remark {
|
|
21725
|
+
font-size: 13px;
|
|
21726
|
+
line-height: 1.4;
|
|
21727
|
+
word-wrap: break-word;
|
|
21728
|
+
white-space: pre-wrap;
|
|
21729
|
+
color: #333; }
|
|
21730
|
+
|
|
21731
|
+
.checklist-table-textarea {
|
|
21732
|
+
min-height: 60px;
|
|
21733
|
+
max-height: 240px;
|
|
21734
|
+
word-wrap: break-word;
|
|
21735
|
+
white-space: pre-wrap;
|
|
21736
|
+
resize: vertical;
|
|
21737
|
+
padding: 14px 16px;
|
|
21738
|
+
border: 1px solid #ccc;
|
|
21739
|
+
border-radius: 4px;
|
|
21740
|
+
font-size: 15px;
|
|
21741
|
+
line-height: 1.5;
|
|
21742
|
+
-webkit-transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21743
|
+
transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21744
|
+
transition: border-color .2s ease,box-shadow .2s ease;
|
|
21745
|
+
transition: border-color .2s ease,box-shadow .2s ease,-webkit-box-shadow .2s ease;
|
|
21746
|
+
width: 100%;
|
|
21747
|
+
-webkit-box-sizing: border-box;
|
|
21748
|
+
box-sizing: border-box;
|
|
21749
|
+
font-family: inherit;
|
|
21750
|
+
text-align: justify; }
|
|
21751
|
+
|
|
21752
|
+
.checklist-table-textarea:focus {
|
|
21753
|
+
outline: none;
|
|
21754
|
+
border-color: #1e3a8a;
|
|
21755
|
+
-webkit-box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
|
|
21756
|
+
box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1); }
|
|
21757
|
+
|
|
21758
|
+
.checklist-table-textarea:disabled {
|
|
21759
|
+
background-color: #f5f5f5;
|
|
21760
|
+
color: #999;
|
|
21761
|
+
cursor: not-allowed;
|
|
21762
|
+
border-color: #e1e8f0; }
|
|
21763
|
+
|
|
21764
|
+
@media (max-width: 1024px) {
|
|
21765
|
+
.checklist-table-textarea {
|
|
21766
|
+
padding: 12px 14px;
|
|
21767
|
+
font-size: 13px; } }
|
|
21768
|
+
|
|
21769
|
+
@media (max-width: 768px) {
|
|
21770
|
+
.checklist-table-textarea {
|
|
21771
|
+
padding: 10px 12px;
|
|
21772
|
+
font-size: 12px;
|
|
21773
|
+
min-height: 50px; } }
|
|
21774
|
+
|
|
21775
|
+
.checklist-remark-display {
|
|
21776
|
+
padding: 14px 16px;
|
|
21777
|
+
font-size: 15px;
|
|
21778
|
+
line-height: 1.5;
|
|
21779
|
+
word-wrap: break-word;
|
|
21780
|
+
white-space: pre-wrap;
|
|
21781
|
+
color: #000;
|
|
21782
|
+
text-align: justify;
|
|
21783
|
+
font-weight: 600; }
|
|
21784
|
+
|
|
21785
|
+
@media (max-width: 1024px) {
|
|
21786
|
+
.checklist-remark-display {
|
|
21787
|
+
padding: 12px 14px;
|
|
21788
|
+
font-size: 15px; } }
|
|
21789
|
+
|
|
21790
|
+
@media (max-width: 768px) {
|
|
21791
|
+
.checklist-remark-display {
|
|
21792
|
+
padding: 10px 12px;
|
|
21793
|
+
font-size: 14px; } }
|
|
21794
|
+
|
|
21534
21795
|
@media (min-width: 1024px) {
|
|
21535
21796
|
.data-card .employee-card-sub-heade {
|
|
21536
21797
|
margin-bottom: 40px;
|