@pmidc/upyog-css 1.2.10 → 1.2.12
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 +86 -49
- package/dist/index.min.css +1 -1
- package/package.json +63 -63
- package/src/components/card.scss +65 -30
- package/src/components/hoc/InboxComposer.scss +3 -7
- package/src/components/newFooter.scss +7 -0
- package/src/components/selectdropdown.scss +22 -2
- package/src/index.scss +1 -1
- package/src/pages/employee/form-fields.scss +7 -1
- package/src/pages/employee/inbox.scss +1 -0
- package/src/pages/employee/landing.scss +26 -6
- package/src/pages/ws/index.scss +14 -0
package/dist/index.css
CHANGED
|
@@ -1790,7 +1790,7 @@ body {
|
|
|
1790
1790
|
.card-link {
|
|
1791
1791
|
height: 40px;
|
|
1792
1792
|
background: linear-gradient(135deg, #2563eb, #1e40af);
|
|
1793
|
-
color: #fff;
|
|
1793
|
+
color: #fff !important;
|
|
1794
1794
|
text-align: center;
|
|
1795
1795
|
outline: none;
|
|
1796
1796
|
width: 175px;
|
|
@@ -1808,8 +1808,12 @@ body {
|
|
|
1808
1808
|
transform: translateY(-2px);
|
|
1809
1809
|
-webkit-box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
|
|
1810
1810
|
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32); }
|
|
1811
|
+
.card-link:focus, .card-link:hover {
|
|
1812
|
+
color: #fff !important; }
|
|
1811
1813
|
.card-link:focus {
|
|
1812
1814
|
outline: none; }
|
|
1815
|
+
.card-link:active, .card-link:visited {
|
|
1816
|
+
color: #fff !important; }
|
|
1813
1817
|
.card-link header {
|
|
1814
1818
|
font-weight: 600;
|
|
1815
1819
|
font-size: 12px;
|
|
@@ -2089,18 +2093,21 @@ body {
|
|
|
2089
2093
|
display: flex;
|
|
2090
2094
|
-webkit-box-align: start;
|
|
2091
2095
|
-ms-flex-align: start;
|
|
2092
|
-
align-items: flex-start;
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
.employee .employeeCard .
|
|
2096
|
-
width:
|
|
2097
|
-
.employee .employeeCard .field, .employee .employeeCard .
|
|
2098
|
-
width: 50%; }
|
|
2099
|
-
.employee .employeeCard .label-field-pair + .card-label-error, .employee .employeeCard .label-field-pair .card-label-error {
|
|
2096
|
+
align-items: flex-start; }
|
|
2097
|
+
.employee .employeeCard .field {
|
|
2098
|
+
width: 40%; }
|
|
2099
|
+
.employee .employeeCard .form-field {
|
|
2100
|
+
width: 100%; }
|
|
2101
|
+
.citizen .employeeCard .label-field-pair + .card-label-error, .citizen .employeeCard .label-field-pair .card-label-error, .employee .employeeCard .label-field-pair + .card-label-error, .employee .employeeCard .label-field-pair .card-label-error {
|
|
2100
2102
|
width: 50% !important;
|
|
2101
2103
|
margin-left: 50% !important;
|
|
2102
2104
|
margin-top: -10px !important;
|
|
2103
|
-
margin-bottom: 8px !important; }
|
|
2105
|
+
margin-bottom: 8px !important; }
|
|
2106
|
+
.popup-module .card-label, .popup-module .field, .popup-module .form-field {
|
|
2107
|
+
width: auto; } }
|
|
2108
|
+
|
|
2109
|
+
.BPAemployeeCard.bpa-workflow-modal-form .card-label, .BPAemployeeCard.bpa-workflow-modal-form .form-field {
|
|
2110
|
+
width: 100% !important; }
|
|
2104
2111
|
|
|
2105
2112
|
@media (max-width: 767px) {
|
|
2106
2113
|
.employee .employeeCard .card-label, .employee .employeeCard .field, .employee .employeeCard .form-field {
|
|
@@ -2122,6 +2129,21 @@ body {
|
|
|
2122
2129
|
.employee-login-container .form-field, .employee-login-form .form-field, .employee-login-page .form-field, .employeeCard .headerStyle + .card-label-desc ~ div .form-field {
|
|
2123
2130
|
width: 100% !important; }
|
|
2124
2131
|
|
|
2132
|
+
.obps-search-mobile-wrapper {
|
|
2133
|
+
width: 100% !important;
|
|
2134
|
+
display: -webkit-box !important;
|
|
2135
|
+
display: -ms-flexbox !important;
|
|
2136
|
+
display: flex !important; }
|
|
2137
|
+
|
|
2138
|
+
.obps-search-mobile-wrapper .employee-select-wrap {
|
|
2139
|
+
width: 100% !important;
|
|
2140
|
+
-webkit-box-flex: 1 !important;
|
|
2141
|
+
-ms-flex: 1 !important;
|
|
2142
|
+
flex: 1 !important; }
|
|
2143
|
+
|
|
2144
|
+
.BPAemployeeCard .employeeCard .card-label, .BPAemployeeCard .employeeCard .form-field, .obps-search-mobile-wrapper .form-field {
|
|
2145
|
+
width: 100% !important; }
|
|
2146
|
+
|
|
2125
2147
|
.selector-button, .selector-button-primary, .selector-button-secondary {
|
|
2126
2148
|
color: #fff !important;
|
|
2127
2149
|
border: none !important;
|
|
@@ -2457,11 +2479,42 @@ body {
|
|
|
2457
2479
|
transform: translateY(-50%) !important;
|
|
2458
2480
|
margin: 0 !important;
|
|
2459
2481
|
float: none !important; }
|
|
2482
|
+
.employee-select-wrap #jk-dropdown-unique {
|
|
2483
|
+
right: 0;
|
|
2484
|
+
left: -56px;
|
|
2485
|
+
width: 100% !important;
|
|
2486
|
+
min-width: 150px;
|
|
2487
|
+
-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);
|
|
2488
|
+
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);
|
|
2489
|
+
max-height: 250px !important;
|
|
2490
|
+
overflow: auto;
|
|
2491
|
+
z-index: 1000 !important;
|
|
2492
|
+
position: absolute;
|
|
2493
|
+
z-index: 20;
|
|
2494
|
+
margin-top: 4px;
|
|
2495
|
+
--bg-opacity:1;
|
|
2496
|
+
background-color: #fff;
|
|
2497
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity)); }
|
|
2498
|
+
.employee-select-wrap #jk-dropdown-unique p {
|
|
2499
|
+
padding-top: 14px;
|
|
2500
|
+
width: 100%;
|
|
2501
|
+
height: 3rem;
|
|
2502
|
+
padding-left: 8px;
|
|
2503
|
+
--text-opacity:1;
|
|
2504
|
+
color: #0d43a7;
|
|
2505
|
+
color: rgba(13, 67, 167, var(--text-opacity));
|
|
2506
|
+
font-size: 16px;
|
|
2507
|
+
line-height: 20px; }
|
|
2508
|
+
.employee-select-wrap #jk-dropdown-unique p:hover {
|
|
2509
|
+
background-color: #eee;
|
|
2510
|
+
background-color: rgba(238, 238, 238, var(--bg-opacity)); }
|
|
2511
|
+
.employee-select-wrap:hover, .employee-select-wrap .options-card {
|
|
2512
|
+
--bg-opacity:1; }
|
|
2460
2513
|
.employee-select-wrap .options-card {
|
|
2461
2514
|
right: 0;
|
|
2462
2515
|
left: 0;
|
|
2463
2516
|
width: 100% !important;
|
|
2464
|
-
min-width:
|
|
2517
|
+
min-width: 150px;
|
|
2465
2518
|
-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);
|
|
2466
2519
|
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);
|
|
2467
2520
|
max-height: 250px !important;
|
|
@@ -2470,7 +2523,6 @@ body {
|
|
|
2470
2523
|
position: absolute;
|
|
2471
2524
|
z-index: 20;
|
|
2472
2525
|
margin-top: 4px;
|
|
2473
|
-
--bg-opacity:1;
|
|
2474
2526
|
background-color: #fff;
|
|
2475
2527
|
background-color: rgba(255, 255, 255, var(--bg-opacity)); }
|
|
2476
2528
|
.employee-select-wrap .options-card p {
|
|
@@ -2484,7 +2536,6 @@ body {
|
|
|
2484
2536
|
font-size: 16px;
|
|
2485
2537
|
line-height: 20px; }
|
|
2486
2538
|
.employee-select-wrap .options-card p:hover {
|
|
2487
|
-
--bg-opacity:1;
|
|
2488
2539
|
background-color: #eee;
|
|
2489
2540
|
background-color: rgba(238, 238, 238, var(--bg-opacity)); }
|
|
2490
2541
|
|
|
@@ -6932,10 +6983,10 @@ video::-webkit-media-controls-panel {
|
|
|
6932
6983
|
.sidebar-menu .menu-item .menu-item-text {
|
|
6933
6984
|
margin-left: 1em; }
|
|
6934
6985
|
|
|
6935
|
-
.
|
|
6936
|
-
-webkit-box
|
|
6937
|
-
-ms-
|
|
6938
|
-
|
|
6986
|
+
.complaint-input-container {
|
|
6987
|
+
display: -webkit-box;
|
|
6988
|
+
display: -ms-flexbox;
|
|
6989
|
+
display: flex; }
|
|
6939
6990
|
|
|
6940
6991
|
.inboxPopupMobileWrapper {
|
|
6941
6992
|
display: block;
|
|
@@ -8818,7 +8869,8 @@ video::-webkit-media-controls-panel {
|
|
|
8818
8869
|
padding: 16px; }
|
|
8819
8870
|
.inbox-container .search-container .search-complaint-container .complaint-input-container {
|
|
8820
8871
|
display: grid !important;
|
|
8821
|
-
grid-template-columns: 33.33% 33.33% 33.33%;
|
|
8872
|
+
grid-template-columns: 33.33% 33.33% 33.33%;
|
|
8873
|
+
width: 100% !important; }
|
|
8822
8874
|
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search {
|
|
8823
8875
|
grid-template-columns: 25% 25% 25% 25%; }
|
|
8824
8876
|
.inbox-container .search-container .search-complaint-container .complaint-input-container.for-pt.for-search .input-fields:nth-child(3n) {
|
|
@@ -9152,7 +9204,7 @@ video::-webkit-media-controls-panel {
|
|
|
9152
9204
|
.desktop-w-full {
|
|
9153
9205
|
width: 100% !important; } }
|
|
9154
9206
|
|
|
9155
|
-
employee-form-first {
|
|
9207
|
+
.employee-form-first {
|
|
9156
9208
|
display: -webkit-box;
|
|
9157
9209
|
display: -ms-flexbox;
|
|
9158
9210
|
display: flex;
|
|
@@ -9166,6 +9218,9 @@ employee-form-first {
|
|
|
9166
9218
|
-ms-flex-direction: column;
|
|
9167
9219
|
flex-direction: column; }
|
|
9168
9220
|
|
|
9221
|
+
.complaint-input-container .complaint-input .form-field, .complaint-input-container .form-field {
|
|
9222
|
+
width: 100% !important; }
|
|
9223
|
+
|
|
9169
9224
|
.scroll-table-wrapper {
|
|
9170
9225
|
-ms-overflow-style: none;
|
|
9171
9226
|
scrollbar-width: none;
|
|
@@ -10159,17 +10214,7 @@ body {
|
|
|
10159
10214
|
width: 48%; } }
|
|
10160
10215
|
|
|
10161
10216
|
.top-section-parent {
|
|
10162
|
-
|
|
10163
|
-
width: 100%;
|
|
10164
|
-
background: linear-gradient(135deg, #1e3a8a, #3b82f6 50%, #0ea5e9);
|
|
10165
|
-
padding: 40px 20px 60px;
|
|
10166
|
-
margin-top: -20px; }
|
|
10167
|
-
@media (max-width: 768px) {
|
|
10168
|
-
.top-section-parent {
|
|
10169
|
-
padding-left: 15px;
|
|
10170
|
-
padding-bottom: 50px;
|
|
10171
|
-
padding-right: 15px;
|
|
10172
|
-
padding-top: 30px; } }
|
|
10217
|
+
display: none; }
|
|
10173
10218
|
|
|
10174
10219
|
.top-section-wrapper {
|
|
10175
10220
|
max-width: 1200px;
|
|
@@ -10856,8 +10901,7 @@ body {
|
|
|
10856
10901
|
height: 20px; }
|
|
10857
10902
|
|
|
10858
10903
|
.landing-about-section {
|
|
10859
|
-
|
|
10860
|
-
background: #fff; }
|
|
10904
|
+
display: none; }
|
|
10861
10905
|
|
|
10862
10906
|
.landing-about-container {
|
|
10863
10907
|
max-width: 1200px;
|
|
@@ -10991,14 +11035,8 @@ body {
|
|
|
10991
11035
|
background: #0f172a;
|
|
10992
11036
|
color: #fff; }
|
|
10993
11037
|
|
|
10994
|
-
.landing-footer-partners {
|
|
10995
|
-
background: #f8fafc;
|
|
10996
|
-
padding: 40px 20px; }
|
|
10997
|
-
|
|
10998
11038
|
.landing-footer-partners-container {
|
|
10999
|
-
|
|
11000
|
-
margin: 0 auto;
|
|
11001
|
-
text-align: center; }
|
|
11039
|
+
display: none; }
|
|
11002
11040
|
|
|
11003
11041
|
.landing-footer-partners-title {
|
|
11004
11042
|
font-size: 14px;
|
|
@@ -11050,7 +11088,7 @@ body {
|
|
|
11050
11088
|
height: 32px; } }
|
|
11051
11089
|
|
|
11052
11090
|
.landing-footer-main {
|
|
11053
|
-
|
|
11091
|
+
display: none; }
|
|
11054
11092
|
|
|
11055
11093
|
.landing-footer-container {
|
|
11056
11094
|
max-width: 1200px;
|
|
@@ -13857,7 +13895,7 @@ body {
|
|
|
13857
13895
|
min-width: calc(25% - 15px) !important;
|
|
13858
13896
|
max-width: calc(25% - 15px) !important; }
|
|
13859
13897
|
|
|
13860
|
-
.alignmentSettle .form-field:nth-child(4n), .alignmentSettle .submit {
|
|
13898
|
+
.alignmentSettle .field:nth-child(4n), .alignmentSettle .form-field:nth-child(4n), .alignmentSettle .submit {
|
|
13861
13899
|
margin-right: 0 !important; }
|
|
13862
13900
|
|
|
13863
13901
|
.alignmentSettle .submit {
|
|
@@ -13895,6 +13933,10 @@ body {
|
|
|
13895
13933
|
margin-right: 10px !important; }
|
|
13896
13934
|
.alignmentSettle .form-field:nth-child(2n) {
|
|
13897
13935
|
margin-right: 0 !important; }
|
|
13936
|
+
.alignmentSettle .field:nth-child(4n) {
|
|
13937
|
+
margin-right: 10px !important; }
|
|
13938
|
+
.alignmentSettle .field:nth-child(2n) {
|
|
13939
|
+
margin-right: 0 !important; }
|
|
13898
13940
|
.alignmentSettle .submit {
|
|
13899
13941
|
width: calc(50% - 10px) !important;
|
|
13900
13942
|
min-width: calc(50% - 10px) !important;
|
|
@@ -13906,7 +13948,7 @@ body {
|
|
|
13906
13948
|
min-width: 100% !important;
|
|
13907
13949
|
max-width: 100% !important;
|
|
13908
13950
|
margin-bottom: 12px !important; }
|
|
13909
|
-
.alignmentSettle .field, .alignmentSettle .form-field, .alignmentSettle .form-field:nth-child(2n) {
|
|
13951
|
+
.alignmentSettle .field, .alignmentSettle .field:nth-child(2n), .alignmentSettle .form-field, .alignmentSettle .form-field:nth-child(2n) {
|
|
13910
13952
|
margin-right: 0 !important; }
|
|
13911
13953
|
.alignmentSettle .submit {
|
|
13912
13954
|
width: 100% !important;
|
|
@@ -16129,11 +16171,7 @@ body {
|
|
|
16129
16171
|
padding: 0 40px; }
|
|
16130
16172
|
|
|
16131
16173
|
.new-df-grid {
|
|
16132
|
-
display:
|
|
16133
|
-
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
16134
|
-
grid-gap: 48px;
|
|
16135
|
-
gap: 48px;
|
|
16136
|
-
padding-bottom: 40px; }
|
|
16174
|
+
display: none; }
|
|
16137
16175
|
|
|
16138
16176
|
.new-df-column {
|
|
16139
16177
|
display: -webkit-box;
|
|
@@ -18592,8 +18630,7 @@ body {
|
|
|
18592
18630
|
margin: 0 !important; }
|
|
18593
18631
|
|
|
18594
18632
|
.ndc_card_labels {
|
|
18595
|
-
width: 100%;
|
|
18596
|
-
max-width: 200px; }
|
|
18633
|
+
width: 100%; }
|
|
18597
18634
|
|
|
18598
18635
|
.downLoadButton {
|
|
18599
18636
|
color: "#A52A2A";
|