@pmidc/upyog-css 1.1.13 → 1.2.1
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 +60 -76
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/body.scss +0 -29
- package/src/components/selectdropdown.scss +3 -1
- package/src/index.scss +1 -1
- package/src/pages/citizen/DocumentList.scss +10 -10
- package/src/pages/employee/form-fields.scss +1 -1
- package/src/pages/employee/inbox.scss +72 -77
- package/src/pages/employee/index.scss +1 -1
package/dist/index.css
CHANGED
|
@@ -908,39 +908,6 @@ body {
|
|
|
908
908
|
.app-container {
|
|
909
909
|
padding: 10px; }
|
|
910
910
|
|
|
911
|
-
.link-label {
|
|
912
|
-
-webkit-box-align: center;
|
|
913
|
-
-ms-flex-align: center;
|
|
914
|
-
align-items: center;
|
|
915
|
-
-webkit-box-pack: center;
|
|
916
|
-
-ms-flex-pack: center;
|
|
917
|
-
justify-content: center;
|
|
918
|
-
height: 40px;
|
|
919
|
-
background: linear-gradient(135deg, #2563eb, #1e40af);
|
|
920
|
-
color: #fff !important;
|
|
921
|
-
text-align: center;
|
|
922
|
-
outline: none;
|
|
923
|
-
width: 175px;
|
|
924
|
-
border-radius: 8px;
|
|
925
|
-
border: none;
|
|
926
|
-
font-weight: 700;
|
|
927
|
-
font-size: 13px;
|
|
928
|
-
cursor: pointer;
|
|
929
|
-
-webkit-transition: all .2s ease;
|
|
930
|
-
transition: all .2s ease;
|
|
931
|
-
-webkit-box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
932
|
-
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
933
|
-
margin: 0;
|
|
934
|
-
text-decoration: none; }
|
|
935
|
-
.link-label:hover {
|
|
936
|
-
-webkit-transform: translateY(-2px);
|
|
937
|
-
transform: translateY(-2px);
|
|
938
|
-
-webkit-box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
|
|
939
|
-
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
|
|
940
|
-
color: #fff !important; }
|
|
941
|
-
.link-label:focus {
|
|
942
|
-
outline: none; }
|
|
943
|
-
|
|
944
911
|
.back-btn {
|
|
945
912
|
width: -webkit-fit-content;
|
|
946
913
|
width: -moz-fit-content;
|
|
@@ -2452,7 +2419,9 @@ body {
|
|
|
2452
2419
|
float: none !important; }
|
|
2453
2420
|
.employee-select-wrap .options-card {
|
|
2454
2421
|
right: 0;
|
|
2455
|
-
|
|
2422
|
+
left: 0;
|
|
2423
|
+
width: 100% !important;
|
|
2424
|
+
min-width: 200px;
|
|
2456
2425
|
-webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
2457
2426
|
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
2458
2427
|
max-height: 250px !important;
|
|
@@ -7993,7 +7962,7 @@ video::-webkit-media-controls-panel {
|
|
|
7993
7962
|
.RightMostTopBarOptions .select-wrap svg {
|
|
7994
7963
|
fill: #a82227; }
|
|
7995
7964
|
.RightMostTopBarOptions .select-wrap .form-field {
|
|
7996
|
-
width: 100
|
|
7965
|
+
width: 100% !important; }
|
|
7997
7966
|
|
|
7998
7967
|
.fullWidth {
|
|
7999
7968
|
width: 100%; }
|
|
@@ -8480,15 +8449,24 @@ video::-webkit-media-controls-panel {
|
|
|
8480
8449
|
.complaint-links-container .links-wrapper .link svg {
|
|
8481
8450
|
margin-left: 8px; }
|
|
8482
8451
|
|
|
8483
|
-
.
|
|
8452
|
+
.complaint-header {
|
|
8453
|
+
-ms-flex-pack: justify;
|
|
8454
|
+
width: 100%;
|
|
8455
|
+
margin-bottom: 20px; }
|
|
8456
|
+
|
|
8457
|
+
.complaint-header, .MobilePopupHeadingWrapper {
|
|
8484
8458
|
display: -webkit-box;
|
|
8485
8459
|
display: -ms-flexbox;
|
|
8486
8460
|
display: flex;
|
|
8461
|
+
display: flex;
|
|
8462
|
+
-webkit-box-pack: justify;
|
|
8463
|
+
-ms-flex-pack: justify;
|
|
8464
|
+
justify-content: space-between; }
|
|
8465
|
+
|
|
8466
|
+
.MobilePopupHeadingWrapper {
|
|
8487
8467
|
-ms-flex-line-pack: justify;
|
|
8488
8468
|
align-content: space-between;
|
|
8489
|
-
-webkit-box-pack: justify;
|
|
8490
8469
|
-ms-flex-pack: justify;
|
|
8491
|
-
justify-content: space-between;
|
|
8492
8470
|
place-content: space-between;
|
|
8493
8471
|
margin-bottom: 16px; }
|
|
8494
8472
|
.MobilePopupHeadingWrapper h2 {
|
|
@@ -8618,6 +8596,14 @@ video::-webkit-media-controls-panel {
|
|
|
8618
8596
|
background-color: #fff;
|
|
8619
8597
|
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
8620
8598
|
padding: 16px; }
|
|
8599
|
+
.inbox-container .filters-container .search-complaint-container .complaint-header {
|
|
8600
|
+
display: -webkit-box;
|
|
8601
|
+
display: -ms-flexbox;
|
|
8602
|
+
display: flex;
|
|
8603
|
+
-webkit-box-pack: justify;
|
|
8604
|
+
-ms-flex-pack: justify;
|
|
8605
|
+
justify-content: space-between;
|
|
8606
|
+
padding-bottom: 1rem; }
|
|
8621
8607
|
.inbox-container .filters-container .search-complaint-container .complaint-input-container {
|
|
8622
8608
|
width: 100%; }
|
|
8623
8609
|
.inbox-container .filters-container .search-complaint-container .complaint-input-container .complaint-input {
|
|
@@ -8776,6 +8762,9 @@ video::-webkit-media-controls-panel {
|
|
|
8776
8762
|
margin-top: unset; }
|
|
8777
8763
|
.inbox-container .search-container .search-complaint-container {
|
|
8778
8764
|
margin: auto;
|
|
8765
|
+
display: -webkit-box;
|
|
8766
|
+
display: -ms-flexbox;
|
|
8767
|
+
display: flex;
|
|
8779
8768
|
-webkit-box-orient: vertical;
|
|
8780
8769
|
-webkit-box-direction: normal;
|
|
8781
8770
|
-ms-flex-direction: column;
|
|
@@ -8788,12 +8777,6 @@ video::-webkit-media-controls-panel {
|
|
|
8788
8777
|
background-color: #fff;
|
|
8789
8778
|
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
8790
8779
|
padding: 16px; }
|
|
8791
|
-
.inbox-container .search-container .search-complaint-container .complaint-header {
|
|
8792
|
-
-webkit-box-pack: justify;
|
|
8793
|
-
-ms-flex-pack: justify;
|
|
8794
|
-
justify-content: space-between;
|
|
8795
|
-
width: 100%;
|
|
8796
|
-
margin-bottom: 20px; }
|
|
8797
8780
|
.inbox-container .search-container .search-complaint-container .complaint-input-container {
|
|
8798
8781
|
display: grid !important;
|
|
8799
8782
|
grid-template-columns: 33.33% 33.33% 33.33%; }
|
|
@@ -8806,23 +8789,23 @@ video::-webkit-media-controls-panel {
|
|
|
8806
8789
|
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search .search-submit-wrapper {
|
|
8807
8790
|
grid-column: 4/5;
|
|
8808
8791
|
max-width: unset;
|
|
8809
|
-
margin-left: unset;
|
|
8810
|
-
|
|
8811
|
-
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
|
-
|
|
8815
|
-
|
|
8816
|
-
|
|
8817
|
-
|
|
8818
|
-
|
|
8819
|
-
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8792
|
+
margin-left: unset;
|
|
8793
|
+
margin-left: 50%;
|
|
8794
|
+
max-width: 50%;
|
|
8795
|
+
grid-column: 3/4;
|
|
8796
|
+
display: -webkit-box;
|
|
8797
|
+
display: -ms-flexbox;
|
|
8798
|
+
display: flex;
|
|
8799
|
+
-webkit-box-orient: vertical;
|
|
8800
|
+
-webkit-box-direction: normal;
|
|
8801
|
+
-ms-flex-direction: column;
|
|
8802
|
+
flex-direction: column;
|
|
8803
|
+
-webkit-box-pack: center;
|
|
8804
|
+
-ms-flex-pack: center;
|
|
8805
|
+
justify-content: center;
|
|
8806
|
+
text-align: center;
|
|
8823
8807
|
margin-top: unset;
|
|
8824
8808
|
margin-bottom: 20px;
|
|
8825
|
-
margin-left: unset;
|
|
8826
8809
|
max-width: 100%;
|
|
8827
8810
|
width: 100%; }
|
|
8828
8811
|
.inbox-container .search-container .search-complaint-container .complaint-input-container .input-fields {
|
|
@@ -8835,6 +8818,9 @@ video::-webkit-media-controls-panel {
|
|
|
8835
8818
|
.inbox-container .search-container .search-complaint-container .complaint-input-container .input-fields:nth-child(3n) {
|
|
8836
8819
|
margin-right: 0 !important; }
|
|
8837
8820
|
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input {
|
|
8821
|
+
display: -webkit-box;
|
|
8822
|
+
display: -ms-flexbox;
|
|
8823
|
+
display: flex;
|
|
8838
8824
|
-webkit-box-orient: vertical;
|
|
8839
8825
|
-webkit-box-direction: normal;
|
|
8840
8826
|
-ms-flex-direction: column;
|
|
@@ -8843,11 +8829,9 @@ video::-webkit-media-controls-panel {
|
|
|
8843
8829
|
--text-opacity:1;
|
|
8844
8830
|
color: #1359c8;
|
|
8845
8831
|
color: rgba(19, 89, 200, var(--text-opacity));
|
|
8846
|
-
display: block;
|
|
8847
|
-
cursor: pointer; }
|
|
8832
|
+
display: block; }
|
|
8848
8833
|
.inbox-container .search-container .search-complaint-container .complaint-input-container .complaint-input .clear-search:hover {
|
|
8849
|
-
color: #003078;
|
|
8850
|
-
cursor: pointer; }
|
|
8834
|
+
color: #003078; }
|
|
8851
8835
|
.inbox-container .search-container .search-complaint-container .complaint-input-container .mobile-input {
|
|
8852
8836
|
margin-left: 8px; }
|
|
8853
8837
|
.inbox-container .search-container .search-complaint-container .search-action-wrapper {
|
|
@@ -9125,7 +9109,7 @@ video::-webkit-media-controls-panel {
|
|
|
9125
9109
|
|
|
9126
9110
|
@media (min-width: 780px) {
|
|
9127
9111
|
.form-field {
|
|
9128
|
-
width:
|
|
9112
|
+
width: 100%; }
|
|
9129
9113
|
.desktop-w-full {
|
|
9130
9114
|
width: 100% !important; } }
|
|
9131
9115
|
|
|
@@ -12300,7 +12284,7 @@ body {
|
|
|
12300
12284
|
margin-bottom: 20px;
|
|
12301
12285
|
border: none; }
|
|
12302
12286
|
|
|
12303
|
-
.
|
|
12287
|
+
.bpa-doc-required-card {
|
|
12304
12288
|
background: #fafafa;
|
|
12305
12289
|
border: 1px solid #d6d5d4;
|
|
12306
12290
|
border-radius: 4px;
|
|
@@ -12309,13 +12293,13 @@ body {
|
|
|
12309
12293
|
margin-bottom: 15px;
|
|
12310
12294
|
padding: 15px 8px 8px; }
|
|
12311
12295
|
|
|
12312
|
-
.
|
|
12296
|
+
.bpa-doc-required-wrapper {
|
|
12313
12297
|
margin-bottom: 24px; }
|
|
12314
12298
|
|
|
12315
|
-
.
|
|
12299
|
+
.bpa-doc-required-label {
|
|
12316
12300
|
width: 100%; }
|
|
12317
12301
|
|
|
12318
|
-
.
|
|
12302
|
+
.bpa-doc-required-field {
|
|
12319
12303
|
display: -webkit-box;
|
|
12320
12304
|
display: -ms-flexbox;
|
|
12321
12305
|
display: flex;
|
|
@@ -12326,25 +12310,25 @@ body {
|
|
|
12326
12310
|
grid-gap: 10px;
|
|
12327
12311
|
gap: 10px; }
|
|
12328
12312
|
|
|
12329
|
-
.
|
|
12313
|
+
.bpa-doc-required-coordinates {
|
|
12330
12314
|
padding: 10px;
|
|
12331
12315
|
font-size: 14px; }
|
|
12332
12316
|
|
|
12333
|
-
.
|
|
12317
|
+
.bpa-doc-view-container {
|
|
12334
12318
|
margin-top: 19px; }
|
|
12335
12319
|
|
|
12336
|
-
.
|
|
12320
|
+
.bpa-doc-view-grid {
|
|
12337
12321
|
-ms-flex-wrap: wrap;
|
|
12338
12322
|
flex-wrap: wrap;
|
|
12339
12323
|
grid-gap: 16px;
|
|
12340
12324
|
gap: 16px; }
|
|
12341
12325
|
|
|
12342
|
-
.
|
|
12326
|
+
.bpa-doc-view-grid, .bpa-doc-view-link {
|
|
12343
12327
|
display: -webkit-box;
|
|
12344
12328
|
display: -ms-flexbox;
|
|
12345
12329
|
display: flex; }
|
|
12346
12330
|
|
|
12347
|
-
.
|
|
12331
|
+
.bpa-doc-view-link {
|
|
12348
12332
|
width: 120px;
|
|
12349
12333
|
text-align: center;
|
|
12350
12334
|
-webkit-box-orient: vertical;
|
|
@@ -12357,11 +12341,11 @@ body {
|
|
|
12357
12341
|
text-decoration: none;
|
|
12358
12342
|
color: inherit; }
|
|
12359
12343
|
|
|
12360
|
-
.
|
|
12344
|
+
.bpa-doc-view-pdf-icon {
|
|
12361
12345
|
background: #f6f6f6;
|
|
12362
12346
|
padding: 8px; }
|
|
12363
12347
|
|
|
12364
|
-
.
|
|
12348
|
+
.bpa-doc-view-label {
|
|
12365
12349
|
margin-top: 8px;
|
|
12366
12350
|
font-size: 12px;
|
|
12367
12351
|
word-wrap: break-word;
|
|
@@ -17408,7 +17392,7 @@ body {
|
|
|
17408
17392
|
margin-left: auto; }
|
|
17409
17393
|
|
|
17410
17394
|
.ws-citizen-wrapper {
|
|
17411
|
-
padding:
|
|
17395
|
+
padding: 15px; }
|
|
17412
17396
|
|
|
17413
17397
|
.application-details-link-button {
|
|
17414
17398
|
display: -webkit-box;
|