@pmidc/upyog-css 1.2.31 → 1.2.33
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 +221 -16
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/buttons.scss +2 -0
- package/src/components/table.scss +2 -1
- package/src/index.scss +185 -4
- package/src/pages/common/searchIcon.scss +14 -5
package/dist/index.css
CHANGED
|
@@ -2359,7 +2359,8 @@ body {
|
|
|
2359
2359
|
width: 100%; }
|
|
2360
2360
|
|
|
2361
2361
|
.selector-button-primary {
|
|
2362
|
-
background-color: #2947a3 !important;
|
|
2362
|
+
background-color: #2947a3 !important;
|
|
2363
|
+
width: 100%; }
|
|
2363
2364
|
.selector-button-primary:hover {
|
|
2364
2365
|
background-color: #1e3a8a !important; }
|
|
2365
2366
|
|
|
@@ -2397,7 +2398,8 @@ body {
|
|
|
2397
2398
|
justify-content: center;
|
|
2398
2399
|
height: auto;
|
|
2399
2400
|
min-height: 40px;
|
|
2400
|
-
margin: 0;
|
|
2401
|
+
margin: 0;
|
|
2402
|
+
width: 100%; }
|
|
2401
2403
|
.selector-button-border:hover {
|
|
2402
2404
|
background-color: #1e3a8a !important;
|
|
2403
2405
|
opacity: .9; }
|
|
@@ -4215,9 +4217,10 @@ body {
|
|
|
4215
4217
|
font-size: 12px; }
|
|
4216
4218
|
|
|
4217
4219
|
.customTable td, .customTable th {
|
|
4218
|
-
text-align:
|
|
4220
|
+
text-align: justify;
|
|
4219
4221
|
border-bottom: 1px solid #e1e8f0;
|
|
4220
|
-
padding: 14px 16px;
|
|
4222
|
+
padding: 14px 16px;
|
|
4223
|
+
max-width: 400px; }
|
|
4221
4224
|
|
|
4222
4225
|
.customTable tr {
|
|
4223
4226
|
-webkit-transition: all .2s ease;
|
|
@@ -15167,14 +15170,31 @@ body {
|
|
|
15167
15170
|
.search-icon {
|
|
15168
15171
|
position: relative;
|
|
15169
15172
|
z-index: 100;
|
|
15170
|
-
right:
|
|
15171
|
-
|
|
15172
|
-
|
|
15173
|
+
right: 8px;
|
|
15174
|
+
top: 50%;
|
|
15175
|
+
-webkit-transform: translateY(-50%);
|
|
15176
|
+
transform: translateY(-50%);
|
|
15177
|
+
cursor: pointer;
|
|
15178
|
+
display: -webkit-box;
|
|
15179
|
+
display: -ms-flexbox;
|
|
15180
|
+
display: flex;
|
|
15181
|
+
-webkit-box-align: center;
|
|
15182
|
+
-ms-flex-align: center;
|
|
15183
|
+
align-items: center;
|
|
15184
|
+
-webkit-box-pack: center;
|
|
15185
|
+
-ms-flex-pack: center;
|
|
15186
|
+
justify-content: center;
|
|
15187
|
+
padding: 8px;
|
|
15188
|
+
margin-left: -30px;
|
|
15189
|
+
margin-top: 23px; }
|
|
15173
15190
|
@media (min-width: 780px) {
|
|
15174
15191
|
.search-icon {
|
|
15175
|
-
right:
|
|
15176
|
-
|
|
15177
|
-
|
|
15192
|
+
right: 12px;
|
|
15193
|
+
top: 50%;
|
|
15194
|
+
-webkit-transform: translateY(-50%);
|
|
15195
|
+
transform: translateY(-50%);
|
|
15196
|
+
left: auto;
|
|
15197
|
+
margin-top: 23px; } }
|
|
15178
15198
|
|
|
15179
15199
|
.sanction-fee-wrapper {
|
|
15180
15200
|
width: 100%;
|
|
@@ -21196,14 +21216,60 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21196
21216
|
.custom-fee-table-input {
|
|
21197
21217
|
width: 100%;
|
|
21198
21218
|
border-radius: 4px;
|
|
21199
|
-
font-size:
|
|
21219
|
+
font-size: 15px;
|
|
21200
21220
|
-webkit-box-sizing: border-box;
|
|
21201
21221
|
box-sizing: border-box; }
|
|
21202
21222
|
|
|
21203
|
-
.custom-fee-
|
|
21223
|
+
.custom-fee-table-textarea {
|
|
21224
|
+
min-height: 60px;
|
|
21225
|
+
max-height: 240px;
|
|
21226
|
+
word-wrap: break-word;
|
|
21227
|
+
white-space: pre-wrap;
|
|
21228
|
+
resize: vertical;
|
|
21229
|
+
padding: 10px 12px;
|
|
21230
|
+
border: 1px solid #ccc;
|
|
21231
|
+
border-radius: 4px;
|
|
21232
|
+
font-size: 15px;
|
|
21233
|
+
line-height: 1.5;
|
|
21234
|
+
-webkit-transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21235
|
+
transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21236
|
+
transition: border-color .2s ease,box-shadow .2s ease;
|
|
21237
|
+
transition: border-color .2s ease,box-shadow .2s ease,-webkit-box-shadow .2s ease; }
|
|
21238
|
+
|
|
21239
|
+
.custom-fee-table-textarea:focus {
|
|
21240
|
+
outline: none;
|
|
21241
|
+
border-color: #1e3a8a;
|
|
21242
|
+
-webkit-box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
|
|
21243
|
+
box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1); }
|
|
21244
|
+
|
|
21245
|
+
.custom-fee-table-textarea:disabled {
|
|
21246
|
+
background-color: #f5f5f5;
|
|
21247
|
+
color: #999;
|
|
21248
|
+
cursor: not-allowed; }
|
|
21249
|
+
|
|
21250
|
+
.custom-fee-remark-display {
|
|
21251
|
+
padding: 10px 12px;
|
|
21252
|
+
border: 1px solid #e0e0e0;
|
|
21253
|
+
border-radius: 4px;
|
|
21254
|
+
background-color: #f9f9f9;
|
|
21255
|
+
font-size: 15px;
|
|
21256
|
+
line-height: 1.5;
|
|
21257
|
+
word-wrap: break-word;
|
|
21258
|
+
white-space: pre-wrap;
|
|
21259
|
+
max-height: 240px;
|
|
21260
|
+
overflow-y: auto;
|
|
21261
|
+
min-height: 40px;
|
|
21262
|
+
-webkit-box-align: start;
|
|
21263
|
+
-ms-flex-align: start;
|
|
21264
|
+
align-items: flex-start;
|
|
21265
|
+
color: #333; }
|
|
21266
|
+
|
|
21267
|
+
.custom-fee-mobile-cards, .custom-fee-remark-display {
|
|
21204
21268
|
display: -webkit-box;
|
|
21205
21269
|
display: -ms-flexbox;
|
|
21206
|
-
display: flex;
|
|
21270
|
+
display: flex; }
|
|
21271
|
+
|
|
21272
|
+
.custom-fee-mobile-cards {
|
|
21207
21273
|
-webkit-box-orient: vertical;
|
|
21208
21274
|
-webkit-box-direction: normal;
|
|
21209
21275
|
-ms-flex-direction: column;
|
|
@@ -21244,13 +21310,13 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21244
21310
|
|
|
21245
21311
|
.custom-fee-card-type {
|
|
21246
21312
|
font-weight: 700;
|
|
21247
|
-
font-size:
|
|
21313
|
+
font-size: 15px;
|
|
21248
21314
|
color: #1a1a1a;
|
|
21249
21315
|
text-transform: capitalize;
|
|
21250
21316
|
letter-spacing: .3px; }
|
|
21251
21317
|
|
|
21252
21318
|
.custom-fee-card-original-amount {
|
|
21253
|
-
font-size:
|
|
21319
|
+
font-size: 15px;
|
|
21254
21320
|
color: #888;
|
|
21255
21321
|
font-weight: 500; }
|
|
21256
21322
|
|
|
@@ -21496,7 +21562,8 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21496
21562
|
|
|
21497
21563
|
.checklist-table-cell-doc-name {
|
|
21498
21564
|
font-size: 16px;
|
|
21499
|
-
min-width: 150px;
|
|
21565
|
+
min-width: 150px;
|
|
21566
|
+
max-width: 340px; }
|
|
21500
21567
|
|
|
21501
21568
|
.checklist-table-cell-file {
|
|
21502
21569
|
min-width: 100px; }
|
|
@@ -21512,6 +21579,144 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21512
21579
|
-webkit-box-sizing: border-box;
|
|
21513
21580
|
box-sizing: border-box; }
|
|
21514
21581
|
|
|
21582
|
+
.checklist-mobile-cards {
|
|
21583
|
+
display: -webkit-box;
|
|
21584
|
+
display: -ms-flexbox;
|
|
21585
|
+
display: flex;
|
|
21586
|
+
-webkit-box-orient: vertical;
|
|
21587
|
+
-webkit-box-direction: normal;
|
|
21588
|
+
-ms-flex-direction: column;
|
|
21589
|
+
flex-direction: column;
|
|
21590
|
+
grid-gap: 10px;
|
|
21591
|
+
gap: 10px;
|
|
21592
|
+
padding: 0; }
|
|
21593
|
+
|
|
21594
|
+
.checklist-mobile-card {
|
|
21595
|
+
border-bottom: 1px solid #e0e0e0;
|
|
21596
|
+
padding: 12px 0; }
|
|
21597
|
+
|
|
21598
|
+
.checklist-card-header {
|
|
21599
|
+
display: -webkit-box;
|
|
21600
|
+
display: -ms-flexbox;
|
|
21601
|
+
display: flex;
|
|
21602
|
+
grid-gap: 8px;
|
|
21603
|
+
gap: 8px;
|
|
21604
|
+
margin-bottom: 8px;
|
|
21605
|
+
-webkit-box-align: center;
|
|
21606
|
+
-ms-flex-align: center;
|
|
21607
|
+
align-items: center;
|
|
21608
|
+
margin-left: 10px; }
|
|
21609
|
+
|
|
21610
|
+
.checklist-card-sr-no {
|
|
21611
|
+
font-weight: 600;
|
|
21612
|
+
font-size: 14px;
|
|
21613
|
+
color: #333;
|
|
21614
|
+
min-width: 20px; }
|
|
21615
|
+
|
|
21616
|
+
.checklist-card-doc-name {
|
|
21617
|
+
font-weight: 600;
|
|
21618
|
+
font-size: 13px;
|
|
21619
|
+
color: #333;
|
|
21620
|
+
-webkit-box-flex: 1;
|
|
21621
|
+
-ms-flex: 1;
|
|
21622
|
+
flex: 1; }
|
|
21623
|
+
|
|
21624
|
+
.checklist-card-content {
|
|
21625
|
+
grid-gap: 8px;
|
|
21626
|
+
gap: 8px;
|
|
21627
|
+
margin-left: 28px; }
|
|
21628
|
+
|
|
21629
|
+
.checklist-card-content, .checklist-card-row {
|
|
21630
|
+
display: -webkit-box;
|
|
21631
|
+
display: -ms-flexbox;
|
|
21632
|
+
display: flex;
|
|
21633
|
+
-webkit-box-orient: vertical;
|
|
21634
|
+
-webkit-box-direction: normal;
|
|
21635
|
+
-ms-flex-direction: column;
|
|
21636
|
+
flex-direction: column; }
|
|
21637
|
+
|
|
21638
|
+
.checklist-card-row {
|
|
21639
|
+
grid-gap: 4px;
|
|
21640
|
+
gap: 4px; }
|
|
21641
|
+
|
|
21642
|
+
.checklist-card-label {
|
|
21643
|
+
font-weight: 500;
|
|
21644
|
+
font-size: 11px;
|
|
21645
|
+
color: #666;
|
|
21646
|
+
text-transform: uppercase;
|
|
21647
|
+
letter-spacing: .3px; }
|
|
21648
|
+
|
|
21649
|
+
.checklist-card-remark {
|
|
21650
|
+
font-size: 13px;
|
|
21651
|
+
line-height: 1.4;
|
|
21652
|
+
word-wrap: break-word;
|
|
21653
|
+
white-space: pre-wrap;
|
|
21654
|
+
color: #333; }
|
|
21655
|
+
|
|
21656
|
+
.checklist-table-textarea {
|
|
21657
|
+
min-height: 60px;
|
|
21658
|
+
max-height: 240px;
|
|
21659
|
+
word-wrap: break-word;
|
|
21660
|
+
white-space: pre-wrap;
|
|
21661
|
+
resize: vertical;
|
|
21662
|
+
padding: 14px 16px;
|
|
21663
|
+
border: 1px solid #ccc;
|
|
21664
|
+
border-radius: 4px;
|
|
21665
|
+
font-size: 15px;
|
|
21666
|
+
line-height: 1.5;
|
|
21667
|
+
-webkit-transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21668
|
+
transition: border-color .2s ease,-webkit-box-shadow .2s ease;
|
|
21669
|
+
transition: border-color .2s ease,box-shadow .2s ease;
|
|
21670
|
+
transition: border-color .2s ease,box-shadow .2s ease,-webkit-box-shadow .2s ease;
|
|
21671
|
+
width: 100%;
|
|
21672
|
+
-webkit-box-sizing: border-box;
|
|
21673
|
+
box-sizing: border-box;
|
|
21674
|
+
font-family: inherit;
|
|
21675
|
+
text-align: justify; }
|
|
21676
|
+
|
|
21677
|
+
.checklist-table-textarea:focus {
|
|
21678
|
+
outline: none;
|
|
21679
|
+
border-color: #1e3a8a;
|
|
21680
|
+
-webkit-box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
|
|
21681
|
+
box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1); }
|
|
21682
|
+
|
|
21683
|
+
.checklist-table-textarea:disabled {
|
|
21684
|
+
background-color: #f5f5f5;
|
|
21685
|
+
color: #999;
|
|
21686
|
+
cursor: not-allowed;
|
|
21687
|
+
border-color: #e1e8f0; }
|
|
21688
|
+
|
|
21689
|
+
@media (max-width: 1024px) {
|
|
21690
|
+
.checklist-table-textarea {
|
|
21691
|
+
padding: 12px 14px;
|
|
21692
|
+
font-size: 13px; } }
|
|
21693
|
+
|
|
21694
|
+
@media (max-width: 768px) {
|
|
21695
|
+
.checklist-table-textarea {
|
|
21696
|
+
padding: 10px 12px;
|
|
21697
|
+
font-size: 12px;
|
|
21698
|
+
min-height: 50px; } }
|
|
21699
|
+
|
|
21700
|
+
.checklist-remark-display {
|
|
21701
|
+
padding: 14px 16px;
|
|
21702
|
+
font-size: 15px;
|
|
21703
|
+
line-height: 1.5;
|
|
21704
|
+
word-wrap: break-word;
|
|
21705
|
+
white-space: pre-wrap;
|
|
21706
|
+
color: #000;
|
|
21707
|
+
text-align: justify;
|
|
21708
|
+
font-weight: 600; }
|
|
21709
|
+
|
|
21710
|
+
@media (max-width: 1024px) {
|
|
21711
|
+
.checklist-remark-display {
|
|
21712
|
+
padding: 12px 14px;
|
|
21713
|
+
font-size: 15px; } }
|
|
21714
|
+
|
|
21715
|
+
@media (max-width: 768px) {
|
|
21716
|
+
.checklist-remark-display {
|
|
21717
|
+
padding: 10px 12px;
|
|
21718
|
+
font-size: 14px; } }
|
|
21719
|
+
|
|
21515
21720
|
@media (min-width: 1024px) {
|
|
21516
21721
|
.data-card .employee-card-sub-heade {
|
|
21517
21722
|
margin-bottom: 40px;
|