@pmidc/upyog-css 1.1.13 → 1.2.0
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 +49 -65
- package/dist/index.min.css +1 -1
- package/package.json +63 -63
- package/src/components/body.scss +0 -29
- package/src/components/selectdropdown.scss +3 -1
- package/src/index.scss +1 -1
- 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
|
|
|
@@ -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;
|