@pmidc/upyog-css 1.2.22 → 1.2.24

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
@@ -222,11 +222,6 @@ code, kbd, pre, samp {
222
222
  -webkit-transform: rotate(1turn);
223
223
  transform: rotate(1turn); } }
224
224
 
225
- @keyframes spin {
226
- to {
227
- -webkit-transform: rotate(1turn);
228
- transform: rotate(1turn); } }
229
-
230
225
  @-webkit-keyframes ping {
231
226
  75%, to {
232
227
  -webkit-transform: scale(2);
@@ -4289,6 +4284,24 @@ body {
4289
4284
  -ms-flex-pack: end;
4290
4285
  justify-content: flex-end; }
4291
4286
 
4287
+ .popup-content {
4288
+ --bg-opacity:1;
4289
+ background-color: #fff;
4290
+ background-color: rgba(255, 255, 255, var(--bg-opacity));
4291
+ border-radius: .125rem;
4292
+ max-width: 48rem;
4293
+ overflow: hidden;
4294
+ text-align: justify;
4295
+ overflow-y: auto;
4296
+ line-height: 1.625;
4297
+ margin-left: auto;
4298
+ margin-right: auto;
4299
+ font-family: Roboto,sans-serif;
4300
+ -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
4301
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
4302
+ padding: 1.5rem;
4303
+ max-height: 80%; }
4304
+
4292
4305
  .upload-wrap {
4293
4306
  width: 100%;
4294
4307
  height: 10rem;
@@ -7910,7 +7923,7 @@ video::-webkit-media-controls-panel {
7910
7923
  .employee .ground-container {
7911
7924
  margin-bottom: 56px;
7912
7925
  margin-left: 0;
7913
- margin-top: 1rem !important;
7926
+ margin-top: 3rem !important;
7914
7927
  display: -webkit-box;
7915
7928
  display: -ms-flexbox;
7916
7929
  display: flex;
@@ -8724,6 +8737,15 @@ video::-webkit-media-controls-panel {
8724
8737
  gap: 1rem; } }
8725
8738
 
8726
8739
  .complaint-links-container {
8740
+ display: -webkit-box;
8741
+ display: -ms-flexbox;
8742
+ display: flex;
8743
+ -webkit-box-pack: center;
8744
+ -ms-flex-pack: center;
8745
+ justify-content: center;
8746
+ -webkit-box-align: center;
8747
+ -ms-flex-align: center;
8748
+ align-items: center;
8727
8749
  --bg-opacity:1;
8728
8750
  background-color: #fff;
8729
8751
  background-color: rgba(255, 255, 255, var(--bg-opacity));
@@ -9712,6 +9734,169 @@ video::-webkit-media-controls-panel {
9712
9734
  to {
9713
9735
  left: 100%; } }
9714
9736
 
9737
+ .challan-doc-modal {
9738
+ -ms-flex-wrap: wrap;
9739
+ flex-wrap: wrap; }
9740
+
9741
+ .challan-doc-modal, .challan-response-action-bar {
9742
+ display: -webkit-box;
9743
+ display: -ms-flexbox;
9744
+ display: flex; }
9745
+
9746
+ .challan-response-action-bar {
9747
+ -webkit-box-pack: end;
9748
+ -ms-flex-pack: end;
9749
+ justify-content: flex-end;
9750
+ -webkit-box-align: baseline;
9751
+ -ms-flex-align: baseline;
9752
+ align-items: baseline;
9753
+ grid-gap: 20px;
9754
+ gap: 20px; }
9755
+
9756
+ .challan-desktop-applicationtable {
9757
+ padding: 20px 18px;
9758
+ font-size: 16px;
9759
+ word-break: break-word;
9760
+ word-wrap: break-word;
9761
+ width: 250px; }
9762
+
9763
+ .card-label-error-challan {
9764
+ width: 70%;
9765
+ margin-left: 30%;
9766
+ font-size: 12px;
9767
+ margin-top: -21px; }
9768
+
9769
+ .challan-stepper-parent-component {
9770
+ width: 100%;
9771
+ max-width: 600px;
9772
+ padding: 30px;
9773
+ border-radius: 12px;
9774
+ -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
9775
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
9776
+
9777
+ .custom-challan-card {
9778
+ display: -webkit-box;
9779
+ display: -ms-flexbox;
9780
+ display: flex;
9781
+ -webkit-box-orient: vertical;
9782
+ -webkit-box-direction: normal;
9783
+ -ms-flex-direction: column;
9784
+ flex-direction: column;
9785
+ -webkit-box-pack: center;
9786
+ -ms-flex-pack: center;
9787
+ justify-content: center;
9788
+ -webkit-box-align: center;
9789
+ -ms-flex-align: center;
9790
+ align-items: center;
9791
+ min-height: 100vh;
9792
+ background-color: #f9f9f9; }
9793
+
9794
+ .challan-hr-linebreak {
9795
+ width: 100%;
9796
+ border: 1px solid #d6d5d4;
9797
+ margin-top: 50px;
9798
+ margin-bottom: 40px; }
9799
+
9800
+ .challan-lat-long {
9801
+ margin-top: 5px;
9802
+ font-size: 14px;
9803
+ color: #333; }
9804
+
9805
+ .challan-note-green {
9806
+ color: green !important;
9807
+ font-size: 14px; }
9808
+
9809
+ .challan-note-red {
9810
+ color: red !important;
9811
+ padding-right: 3px; }
9812
+
9813
+ .challan-documents {
9814
+ margin-bottom: 24px; }
9815
+
9816
+ .challan-label-field {
9817
+ display: inline; }
9818
+
9819
+ .challan-card-label {
9820
+ margin-bottom: 8px;
9821
+ width: auto; }
9822
+
9823
+ .challan-application-table {
9824
+ min-width: 150px;
9825
+ font-size: 16px;
9826
+ padding: 10px 10px 10px 20px; }
9827
+
9828
+ .challan-custom-header {
9829
+ font-size: 24px;
9830
+ margin-top: 30px; }
9831
+
9832
+ .challan-amount-field {
9833
+ width: 50%;
9834
+ margin-top: 20px; }
9835
+
9836
+ .challan-bottom-style {
9837
+ margin-bottom: 20px; }
9838
+
9839
+ .mychallan-custom {
9840
+ margin-top: 16px; }
9841
+
9842
+ .challan-load-message {
9843
+ margin-left: 16px;
9844
+ margin-top: 16px; }
9845
+
9846
+ .challan-application-details .cardHeaderWithOptions {
9847
+ margin-right: auto;
9848
+ max-width: 960px; }
9849
+
9850
+ .challan-custom-header-font {
9851
+ font-size: 32px; }
9852
+
9853
+ .challan-custom-subheader-font {
9854
+ font-size: 24px; }
9855
+
9856
+ .challan-custom-card {
9857
+ -webkit-box-orient: horizontal;
9858
+ -webkit-box-direction: normal;
9859
+ -ms-flex-direction: row;
9860
+ flex-direction: row;
9861
+ grid-gap: 30px;
9862
+ gap: 30px; }
9863
+
9864
+ .challan-custom-card, .challan-emp-acknowledgement {
9865
+ display: -webkit-box;
9866
+ display: -ms-flexbox;
9867
+ display: flex; }
9868
+
9869
+ .challan-emp-acknowledgement {
9870
+ -webkit-box-pack: end;
9871
+ -ms-flex-pack: end;
9872
+ justify-content: flex-end;
9873
+ -webkit-box-align: baseline;
9874
+ -ms-flex-align: baseline;
9875
+ align-items: baseline; }
9876
+
9877
+ .challan-link-href {
9878
+ cursor: pointer;
9879
+ color: #666; }
9880
+
9881
+ .challan-search-table {
9882
+ background-color: #fff;
9883
+ margin-top: 200px;
9884
+ margin-left: 2.5%;
9885
+ width: 100%; }
9886
+
9887
+ .ndc-search-container-custom {
9888
+ width: 100%;
9889
+ margin-left: 24px; }
9890
+
9891
+ [dir=ltr] .ndc-complaint-input-container {
9892
+ text-align: left; }
9893
+
9894
+ [dir=rtl] .ndc-complaint-input-container {
9895
+ text-align: right; }
9896
+
9897
+ .ndc-search-action-wrapper {
9898
+ width: 100%; }
9899
+
9715
9900
  .secondary-action {
9716
9901
  display: inline;
9717
9902
  float: right; }
@@ -16457,6 +16642,10 @@ body {
16457
16642
  margin-left: 16px;
16458
16643
  width: calc(100% - 16px); }
16459
16644
 
16645
+ .pgr-create-complaint-wrapper .form-field .text-input, .pgr-create-complaint-wrapper .label-field-pair .form-field .text-input.desktop-w-full, .pgr-create-complaint-wrapper .mobile-number-input-with-prefix, .pgr-create-complaint-wrapper input[name=mobileNumber], .pgr-create-complaint-wrapper .checkbox-wrap .input-emp[name=mobileNumber], .checkbox-wrap .pgr-create-complaint-wrapper .input-emp[name=mobileNumber] {
16646
+ width: 100% !important;
16647
+ max-width: none !important; }
16648
+
16460
16649
  .custom-timeline-container {
16461
16650
  padding: 24px;
16462
16651
  background: linear-gradient(135deg, #fff, #f8fafb);
@@ -19645,6 +19834,41 @@ body {
19645
19834
  .ndc_label {
19646
19835
  padding-bottom: 20px; }
19647
19836
 
19837
+ .ndc-property-details-form {
19838
+ -webkit-box-align: center;
19839
+ -ms-flex-align: center;
19840
+ align-items: center;
19841
+ grid-gap: 12px;
19842
+ gap: 12px; }
19843
+
19844
+ .ndc-action-bar, .ndc-property-details-form {
19845
+ display: -webkit-box;
19846
+ display: -ms-flexbox;
19847
+ display: flex; }
19848
+
19849
+ .ndc-action-bar {
19850
+ -webkit-box-pack: end;
19851
+ -ms-flex-pack: end;
19852
+ justify-content: flex-end;
19853
+ -webkit-box-align: baseline;
19854
+ -ms-flex-align: baseline;
19855
+ align-items: baseline;
19856
+ grid-gap: 20px;
19857
+ gap: 20px; }
19858
+
19859
+ .ndc-emp-app-overview {
19860
+ margin-bottom: 30px;
19861
+ background: #fafafa;
19862
+ padding: 16px;
19863
+ border-radius: 4px; }
19864
+
19865
+ .ndc-property-detail-green {
19866
+ color: green !important; }
19867
+
19868
+ .ndc-acknowledgement-check {
19869
+ margin-top: 40px;
19870
+ margin-bottom: 20px; }
19871
+
19648
19872
  .step-label {
19649
19873
  font-size: 12px !important; }
19650
19874
 
@@ -20117,3 +20341,188 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
20117
20341
  -webkit-appearance: none !important;
20118
20342
  -moz-appearance: none !important;
20119
20343
  appearance: none !important; }
20344
+
20345
+ .ndc-pay-due-button {
20346
+ color: red;
20347
+ width: 100%;
20348
+ max-width: 70px; }
20349
+
20350
+ .ndc-no-due-button {
20351
+ color: green;
20352
+ width: 100%;
20353
+ max-width: 70px; }
20354
+
20355
+ .ndc-doc-view-comp {
20356
+ display: -webkit-box;
20357
+ display: -ms-flexbox;
20358
+ display: flex;
20359
+ -ms-flex-wrap: wrap;
20360
+ flex-wrap: wrap;
20361
+ grid-gap: 16px;
20362
+ gap: 16px; }
20363
+
20364
+ .ndc-label-field-pair {
20365
+ margin-top: 40px; }
20366
+
20367
+ .ndc-emp-step-form {
20368
+ font-size: 28px;
20369
+ font-weight: 400;
20370
+ color: #1c1d1f; }
20371
+
20372
+ .chb-loader-container {
20373
+ display: -webkit-box;
20374
+ display: -ms-flexbox;
20375
+ display: flex;
20376
+ -webkit-box-pack: center;
20377
+ -ms-flex-pack: center;
20378
+ justify-content: center;
20379
+ -webkit-box-align: center;
20380
+ -ms-flex-align: center;
20381
+ align-items: center; }
20382
+
20383
+ .chb-page-loader-overlay {
20384
+ position: fixed;
20385
+ top: 0;
20386
+ left: 0;
20387
+ width: 100vw;
20388
+ height: 100vh;
20389
+ background: rgba(255, 255, 255, 0.6);
20390
+ backdrop-filter: blur(4px);
20391
+ z-index: 9999; }
20392
+
20393
+ .chb-module-loader-container {
20394
+ min-height: 100px;
20395
+ width: 100%;
20396
+ position: relative; }
20397
+
20398
+ .chb-spinner {
20399
+ width: 64px;
20400
+ height: 64px;
20401
+ border: 8px solid #1976d2;
20402
+ border-top-color: transparent;
20403
+ border-radius: 50%;
20404
+ -webkit-animation: spin 1.2s linear infinite;
20405
+ animation: spin 1.2s linear infinite; }
20406
+
20407
+ @keyframes spin {
20408
+ 0% {
20409
+ -webkit-transform: rotate(0deg);
20410
+ transform: rotate(0deg); }
20411
+ to {
20412
+ -webkit-transform: rotate(1turn);
20413
+ transform: rotate(1turn); } }
20414
+
20415
+ .chb-margin-top-20 {
20416
+ margin-top: 20px; }
20417
+
20418
+ .chb-margin-bottom-0 {
20419
+ margin-bottom: 0; }
20420
+
20421
+ .chb-margin-bottom-20 {
20422
+ margin-bottom: 20px; }
20423
+
20424
+ .chb-error-text {
20425
+ color: red;
20426
+ margin-top: 4px;
20427
+ margin-bottom: 0; }
20428
+
20429
+ .chb-slot-grid {
20430
+ display: grid;
20431
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
20432
+ grid-gap: 16px;
20433
+ gap: 16px;
20434
+ width: 100%; }
20435
+
20436
+ .chb-slot-card {
20437
+ border: 1px solid #ccc;
20438
+ border-radius: 8px;
20439
+ padding: 12px;
20440
+ background-color: #e6ffed;
20441
+ cursor: pointer;
20442
+ opacity: 1;
20443
+ -webkit-box-orient: vertical;
20444
+ -webkit-box-direction: normal;
20445
+ -ms-flex-direction: column;
20446
+ flex-direction: column;
20447
+ grid-gap: 6px;
20448
+ gap: 6px; }
20449
+
20450
+ .chb-slot-card--unavailable {
20451
+ background-color: #ffe6e6;
20452
+ cursor: not-allowed;
20453
+ opacity: .6; }
20454
+
20455
+ .chb-slot-status {
20456
+ color: green;
20457
+ font-weight: 700; }
20458
+
20459
+ .chb-slot-status--unavailable {
20460
+ color: red; }
20461
+
20462
+ .chb-slot-text {
20463
+ margin-left: 10px; }
20464
+
20465
+ .chb-form-field-margin {
20466
+ margin-bottom: 0; }
20467
+
20468
+ .chb-dropdown-menu {
20469
+ position: absolute;
20470
+ background-color: #fff;
20471
+ border: 1px solid #ccc;
20472
+ border-radius: 4px;
20473
+ padding: 8px;
20474
+ z-index: 1000; }
20475
+
20476
+ .chb-menu-item {
20477
+ display: block;
20478
+ padding: 8px;
20479
+ text-decoration: none;
20480
+ color: #000;
20481
+ cursor: pointer; }
20482
+
20483
+ .chb-documents-container {
20484
+ display: -webkit-box;
20485
+ display: -ms-flexbox;
20486
+ display: flex;
20487
+ -ms-flex-wrap: wrap;
20488
+ flex-wrap: wrap;
20489
+ grid-gap: 16px;
20490
+ gap: 16px; }
20491
+
20492
+ .chb-table-cell-summary {
20493
+ min-width: 100px;
20494
+ font-size: clamp(0.9rem, 2vw, 1.1rem);
20495
+ padding: 8px 8px 8px 10px;
20496
+ word-break: break-word; }
20497
+
20498
+ .chb-table-cell-details {
20499
+ min-width: 150px;
20500
+ font-size: 16px;
20501
+ padding: 10px 10px 10px 20px; }
20502
+
20503
+ .chb-documents-flex {
20504
+ display: -webkit-box;
20505
+ display: -ms-flexbox;
20506
+ display: flex;
20507
+ -ms-flex-wrap: wrap;
20508
+ flex-wrap: wrap;
20509
+ grid-gap: 16px;
20510
+ gap: 16px;
20511
+ margin-top: 16px; }
20512
+
20513
+ .chb-banner-header {
20514
+ font-size: clamp(20px, 4vw, 32px);
20515
+ word-break: break-word; }
20516
+
20517
+ .chb-action-bar-response {
20518
+ display: -webkit-box;
20519
+ display: -ms-flexbox;
20520
+ display: flex;
20521
+ -webkit-box-pack: end;
20522
+ -ms-flex-pack: end;
20523
+ justify-content: flex-end;
20524
+ -webkit-box-align: baseline;
20525
+ -ms-flex-align: baseline;
20526
+ align-items: baseline;
20527
+ grid-gap: 20px;
20528
+ gap: 20px; }