@pmidc/upyog-css 1.2.32 → 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 CHANGED
@@ -4217,9 +4217,10 @@ body {
4217
4217
  font-size: 12px; }
4218
4218
 
4219
4219
  .customTable td, .customTable th {
4220
- text-align: left;
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;
@@ -21215,14 +21216,60 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
21215
21216
  .custom-fee-table-input {
21216
21217
  width: 100%;
21217
21218
  border-radius: 4px;
21218
- font-size: 13px;
21219
+ font-size: 15px;
21219
21220
  -webkit-box-sizing: border-box;
21220
21221
  box-sizing: border-box; }
21221
21222
 
21222
- .custom-fee-mobile-cards {
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 {
21223
21268
  display: -webkit-box;
21224
21269
  display: -ms-flexbox;
21225
- display: flex;
21270
+ display: flex; }
21271
+
21272
+ .custom-fee-mobile-cards {
21226
21273
  -webkit-box-orient: vertical;
21227
21274
  -webkit-box-direction: normal;
21228
21275
  -ms-flex-direction: column;
@@ -21263,13 +21310,13 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
21263
21310
 
21264
21311
  .custom-fee-card-type {
21265
21312
  font-weight: 700;
21266
- font-size: 14px;
21313
+ font-size: 15px;
21267
21314
  color: #1a1a1a;
21268
21315
  text-transform: capitalize;
21269
21316
  letter-spacing: .3px; }
21270
21317
 
21271
21318
  .custom-fee-card-original-amount {
21272
- font-size: 12px;
21319
+ font-size: 15px;
21273
21320
  color: #888;
21274
21321
  font-weight: 500; }
21275
21322
 
@@ -21515,7 +21562,8 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
21515
21562
 
21516
21563
  .checklist-table-cell-doc-name {
21517
21564
  font-size: 16px;
21518
- min-width: 150px; }
21565
+ min-width: 150px;
21566
+ max-width: 340px; }
21519
21567
 
21520
21568
  .checklist-table-cell-file {
21521
21569
  min-width: 100px; }
@@ -21531,6 +21579,144 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
21531
21579
  -webkit-box-sizing: border-box;
21532
21580
  box-sizing: border-box; }
21533
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
+
21534
21720
  @media (min-width: 1024px) {
21535
21721
  .data-card .employee-card-sub-heade {
21536
21722
  margin-bottom: 40px;