@pmidc/upyog-css 1.2.8 → 1.2.10
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 +584 -58
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/PropertySearchForm.scss +2 -2
- package/src/components/SearchForm.scss +1 -1
- package/src/components/buttons.scss +17 -11
- package/src/components/card.scss +74 -14
- package/src/components/hoc/InboxComposer.scss +4 -4
- package/src/components/textfields.scss +1 -1
- package/src/index.scss +28 -19
- package/src/modules/hrms/index.scss +493 -0
- package/src/modules/rentAndLease/index.scss +8 -1
- package/src/pages/common/searchIcon.scss +1 -1
- package/src/pages/employee/form-fields.scss +10 -2
- package/src/pages/employee/index.scss +2 -2
- package/src/pages/ws/index.scss +4 -4
package/dist/index.css
CHANGED
|
@@ -207,14 +207,6 @@ button, input, .checkbox-wrap .input-emp, optgroup, select, textarea {
|
|
|
207
207
|
code, kbd, pre, samp {
|
|
208
208
|
font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace; }
|
|
209
209
|
|
|
210
|
-
audio, canvas, embed, iframe, img, object, svg, video {
|
|
211
|
-
display: block;
|
|
212
|
-
vertical-align: middle; }
|
|
213
|
-
|
|
214
|
-
img, video {
|
|
215
|
-
max-width: 100%;
|
|
216
|
-
height: auto; }
|
|
217
|
-
|
|
218
210
|
.container {
|
|
219
211
|
width: 100%; }
|
|
220
212
|
|
|
@@ -1588,6 +1580,10 @@ body {
|
|
|
1588
1580
|
flex-direction: row;
|
|
1589
1581
|
width: 100%; }
|
|
1590
1582
|
|
|
1583
|
+
.card {
|
|
1584
|
+
-webkit-box-shadow: none;
|
|
1585
|
+
box-shadow: none; }
|
|
1586
|
+
|
|
1591
1587
|
.card {
|
|
1592
1588
|
padding: 20px 24px 28px;
|
|
1593
1589
|
max-width: 95vw;
|
|
@@ -1978,13 +1974,7 @@ body {
|
|
|
1978
1974
|
display: flex;
|
|
1979
1975
|
-webkit-box-align: center;
|
|
1980
1976
|
-ms-flex-align: center;
|
|
1981
|
-
align-items: center; }
|
|
1982
|
-
.employeeCard .label-field-pair h2 {
|
|
1983
|
-
width: 30%; }
|
|
1984
|
-
.employeeCard .label-field-pair .field {
|
|
1985
|
-
width: 50%;
|
|
1986
|
-
margin-right: 20%;
|
|
1987
|
-
margin-right: unset; } }
|
|
1977
|
+
align-items: center; } }
|
|
1988
1978
|
|
|
1989
1979
|
.card-section-header {
|
|
1990
1980
|
font-size: 18px;
|
|
@@ -2092,6 +2082,46 @@ body {
|
|
|
2092
2082
|
width: 100%;
|
|
2093
2083
|
margin: 0; }
|
|
2094
2084
|
|
|
2085
|
+
@media (min-width: 768px) {
|
|
2086
|
+
.employee .employeeCard .label-field-pair {
|
|
2087
|
+
display: -webkit-box;
|
|
2088
|
+
display: -ms-flexbox;
|
|
2089
|
+
display: flex;
|
|
2090
|
+
-webkit-box-align: start;
|
|
2091
|
+
-ms-flex-align: start;
|
|
2092
|
+
align-items: flex-start;
|
|
2093
|
+
-ms-flex-wrap: wrap;
|
|
2094
|
+
flex-wrap: wrap; }
|
|
2095
|
+
.employee .employeeCard .card-label {
|
|
2096
|
+
width: 30%; }
|
|
2097
|
+
.employee .employeeCard .field, .employee .employeeCard .form-field {
|
|
2098
|
+
width: 50%; }
|
|
2099
|
+
.employee .employeeCard .label-field-pair + .card-label-error, .employee .employeeCard .label-field-pair .card-label-error {
|
|
2100
|
+
width: 50% !important;
|
|
2101
|
+
margin-left: 50% !important;
|
|
2102
|
+
margin-top: -10px !important;
|
|
2103
|
+
margin-bottom: 8px !important; } }
|
|
2104
|
+
|
|
2105
|
+
@media (max-width: 767px) {
|
|
2106
|
+
.employee .employeeCard .card-label, .employee .employeeCard .field, .employee .employeeCard .form-field {
|
|
2107
|
+
width: 100%; }
|
|
2108
|
+
.employee .employeeCard .label-field-pair {
|
|
2109
|
+
-webkit-box-orient: vertical;
|
|
2110
|
+
-webkit-box-direction: normal;
|
|
2111
|
+
-ms-flex-direction: column;
|
|
2112
|
+
flex-direction: column;
|
|
2113
|
+
-webkit-box-align: start;
|
|
2114
|
+
-ms-flex-align: start;
|
|
2115
|
+
align-items: flex-start; }
|
|
2116
|
+
.employee .employeeCard .label-field-pair + .card-label-error, .employee .employeeCard .label-field-pair .card-label-error {
|
|
2117
|
+
width: 100% !important;
|
|
2118
|
+
margin-left: 0 !important;
|
|
2119
|
+
margin-top: 2px !important;
|
|
2120
|
+
margin-bottom: 8px !important; } }
|
|
2121
|
+
|
|
2122
|
+
.employee-login-container .form-field, .employee-login-form .form-field, .employee-login-page .form-field, .employeeCard .headerStyle + .card-label-desc ~ div .form-field {
|
|
2123
|
+
width: 100% !important; }
|
|
2124
|
+
|
|
2095
2125
|
.selector-button, .selector-button-primary, .selector-button-secondary {
|
|
2096
2126
|
color: #fff !important;
|
|
2097
2127
|
border: none !important;
|
|
@@ -2252,6 +2282,16 @@ body {
|
|
|
2252
2282
|
border: 1px solid !important;
|
|
2253
2283
|
margin-right: 10px !important; }
|
|
2254
2284
|
|
|
2285
|
+
.action-button-myapplication {
|
|
2286
|
+
display: -webkit-box;
|
|
2287
|
+
display: -ms-flexbox;
|
|
2288
|
+
display: flex;
|
|
2289
|
+
grid-gap: 20px;
|
|
2290
|
+
gap: 20px;
|
|
2291
|
+
-ms-flex-wrap: wrap;
|
|
2292
|
+
flex-wrap: wrap;
|
|
2293
|
+
margin-top: 10px; }
|
|
2294
|
+
|
|
2255
2295
|
.radio-wrap {
|
|
2256
2296
|
margin-top: 8px;
|
|
2257
2297
|
display: block;
|
|
@@ -2823,7 +2863,7 @@ body {
|
|
|
2823
2863
|
.mobile-number-prefix {
|
|
2824
2864
|
position: absolute;
|
|
2825
2865
|
left: 12px;
|
|
2826
|
-
top:
|
|
2866
|
+
top: 50%;
|
|
2827
2867
|
-webkit-transform: translateY(-50%);
|
|
2828
2868
|
transform: translateY(-50%);
|
|
2829
2869
|
font-size: 16px;
|
|
@@ -5738,7 +5778,7 @@ video::-webkit-media-controls-panel {
|
|
|
5738
5778
|
.PropertySearchForm .PropertySearchFormSwitcher span {
|
|
5739
5779
|
margin-right: 20px; }
|
|
5740
5780
|
|
|
5741
|
-
.PropertySearchForm .form-field {
|
|
5781
|
+
.PropertySearchForm .field, .PropertySearchForm .form-field {
|
|
5742
5782
|
width: 30% !important;
|
|
5743
5783
|
margin-bottom: 20px; }
|
|
5744
5784
|
|
|
@@ -5748,7 +5788,7 @@ video::-webkit-media-controls-panel {
|
|
|
5748
5788
|
margin-bottom: 20px; } }
|
|
5749
5789
|
|
|
5750
5790
|
@media (max-width: 780px) {
|
|
5751
|
-
.PropertySearchForm .form-field, .PropertySearchForm .pt-form-field {
|
|
5791
|
+
.PropertySearchForm .field, .PropertySearchForm .form-field, .PropertySearchForm .pt-form-field {
|
|
5752
5792
|
width: 100% !important;
|
|
5753
5793
|
margin-bottom: 15px; } }
|
|
5754
5794
|
|
|
@@ -5769,7 +5809,7 @@ video::-webkit-media-controls-panel {
|
|
|
5769
5809
|
padding-bottom: 24px;
|
|
5770
5810
|
padding-left: 24px;
|
|
5771
5811
|
border-radius: 8px; }
|
|
5772
|
-
.search-form-wrapper .form-field {
|
|
5812
|
+
.search-form-wrapper .field, .search-form-wrapper .form-field {
|
|
5773
5813
|
width: calc(25% - 16px);
|
|
5774
5814
|
display: inline-block;
|
|
5775
5815
|
margin-right: 16px;
|
|
@@ -6892,7 +6932,7 @@ video::-webkit-media-controls-panel {
|
|
|
6892
6932
|
.sidebar-menu .menu-item .menu-item-text {
|
|
6893
6933
|
margin-left: 1em; }
|
|
6894
6934
|
|
|
6895
|
-
.InboxComposerWrapper .form-field-flex-one .form-field {
|
|
6935
|
+
.InboxComposerWrapper .form-field-flex-one .field, .InboxComposerWrapper .form-field-flex-one .form-field {
|
|
6896
6936
|
-webkit-box-flex: 1;
|
|
6897
6937
|
-ms-flex: 1 1 0%;
|
|
6898
6938
|
flex: 1 1 0%; }
|
|
@@ -6917,7 +6957,7 @@ video::-webkit-media-controls-panel {
|
|
|
6917
6957
|
-webkit-box-direction: reverse !important;
|
|
6918
6958
|
-ms-flex-direction: row-reverse !important;
|
|
6919
6959
|
flex-direction: row-reverse !important; }
|
|
6920
|
-
.inboxPopupMobileWrapper .form-field {
|
|
6960
|
+
.inboxPopupMobileWrapper .field, .inboxPopupMobileWrapper .form-field {
|
|
6921
6961
|
margin: 0 !important;
|
|
6922
6962
|
width: 100%; }
|
|
6923
6963
|
.inboxPopupMobileWrapper .InboxMobilePopupCloseButtonWrapper {
|
|
@@ -6945,7 +6985,7 @@ video::-webkit-media-controls-panel {
|
|
|
6945
6985
|
height: fit-content; }
|
|
6946
6986
|
.wns-inbox-composer .wns-search-field {
|
|
6947
6987
|
width: 30% !important; }
|
|
6948
|
-
.wns-inbox-composer .form-field {
|
|
6988
|
+
.wns-inbox-composer .field, .wns-inbox-composer .form-field {
|
|
6949
6989
|
width: 100% !important; }
|
|
6950
6990
|
.wns-inbox-composer .SubmitAndClearAllContainer {
|
|
6951
6991
|
width: 100%;
|
|
@@ -7007,10 +7047,10 @@ video::-webkit-media-controls-panel {
|
|
|
7007
7047
|
.search-form-wns-inbox .search-complaint-container .complaint-input-container {
|
|
7008
7048
|
display: grid !important;
|
|
7009
7049
|
grid-template-columns: 33.33% 33.33% 33.33%; }
|
|
7010
|
-
.search-form-wns-inbox .search-complaint-container .form-field {
|
|
7050
|
+
.search-form-wns-inbox .search-complaint-container .field, .search-form-wns-inbox .search-complaint-container .form-field {
|
|
7011
7051
|
width: 100%;
|
|
7012
7052
|
padding-right: 15px; }
|
|
7013
|
-
.search-form-wns-inbox .search-complaint-container .form-field .clear-search {
|
|
7053
|
+
.search-form-wns-inbox .search-complaint-container .field .clear-search, .search-form-wns-inbox .search-complaint-container .form-field .clear-search {
|
|
7014
7054
|
padding-top: 10px; }
|
|
7015
7055
|
.search-form-wns-inbox .submit {
|
|
7016
7056
|
margin-top: 0;
|
|
@@ -7960,8 +8000,8 @@ video::-webkit-media-controls-panel {
|
|
|
7960
8000
|
margin-bottom: unset; }
|
|
7961
8001
|
.RightMostTopBarOptions .select-wrap svg {
|
|
7962
8002
|
fill: #a82227; }
|
|
7963
|
-
.RightMostTopBarOptions .select-wrap .form-field {
|
|
7964
|
-
width: 100
|
|
8003
|
+
.RightMostTopBarOptions .select-wrap .field, .RightMostTopBarOptions .select-wrap .form-field {
|
|
8004
|
+
width: 100%; }
|
|
7965
8005
|
|
|
7966
8006
|
.fullWidth {
|
|
7967
8007
|
width: 100%; }
|
|
@@ -9103,15 +9143,29 @@ video::-webkit-media-controls-panel {
|
|
|
9103
9143
|
display: inline;
|
|
9104
9144
|
float: right; }
|
|
9105
9145
|
|
|
9106
|
-
.form-field {
|
|
9146
|
+
.field, .form-field {
|
|
9107
9147
|
width: 100%; }
|
|
9108
9148
|
|
|
9109
9149
|
@media (min-width: 780px) {
|
|
9110
|
-
.form-field {
|
|
9150
|
+
.field, .form-field {
|
|
9111
9151
|
width: 100%; }
|
|
9112
9152
|
.desktop-w-full {
|
|
9113
9153
|
width: 100% !important; } }
|
|
9114
9154
|
|
|
9155
|
+
employee-form-first {
|
|
9156
|
+
display: -webkit-box;
|
|
9157
|
+
display: -ms-flexbox;
|
|
9158
|
+
display: flex;
|
|
9159
|
+
-ms-flex-wrap: wrap;
|
|
9160
|
+
flex-wrap: wrap;
|
|
9161
|
+
grid-gap: 24px;
|
|
9162
|
+
gap: 24px;
|
|
9163
|
+
width: 100%;
|
|
9164
|
+
-webkit-box-orient: vertical;
|
|
9165
|
+
-webkit-box-direction: normal;
|
|
9166
|
+
-ms-flex-direction: column;
|
|
9167
|
+
flex-direction: column; }
|
|
9168
|
+
|
|
9115
9169
|
.scroll-table-wrapper {
|
|
9116
9170
|
-ms-overflow-style: none;
|
|
9117
9171
|
scrollbar-width: none;
|
|
@@ -13796,7 +13850,7 @@ body {
|
|
|
13796
13850
|
background-color: red;
|
|
13797
13851
|
padding-bottom: 90px !important; }
|
|
13798
13852
|
|
|
13799
|
-
.alignmentSettle .form-field {
|
|
13853
|
+
.alignmentSettle .field, .alignmentSettle .form-field {
|
|
13800
13854
|
width: calc(25% - 15px) !important;
|
|
13801
13855
|
margin-right: 15px !important;
|
|
13802
13856
|
margin-bottom: 16px !important;
|
|
@@ -13833,11 +13887,11 @@ body {
|
|
|
13833
13887
|
font-size: 12px !important; }
|
|
13834
13888
|
|
|
13835
13889
|
@media (max-width: 1024px) {
|
|
13836
|
-
.alignmentSettle .form-field {
|
|
13890
|
+
.alignmentSettle .field, .alignmentSettle .form-field {
|
|
13837
13891
|
width: calc(50% - 10px) !important;
|
|
13838
13892
|
min-width: calc(50% - 10px) !important;
|
|
13839
13893
|
max-width: calc(50% - 10px) !important; }
|
|
13840
|
-
.alignmentSettle .form-field, .alignmentSettle .form-field:nth-child(4n) {
|
|
13894
|
+
.alignmentSettle .field, .alignmentSettle .form-field, .alignmentSettle .form-field:nth-child(4n) {
|
|
13841
13895
|
margin-right: 10px !important; }
|
|
13842
13896
|
.alignmentSettle .form-field:nth-child(2n) {
|
|
13843
13897
|
margin-right: 0 !important; }
|
|
@@ -13847,12 +13901,12 @@ body {
|
|
|
13847
13901
|
max-width: calc(50% - 10px) !important; } }
|
|
13848
13902
|
|
|
13849
13903
|
@media (max-width: 640px) {
|
|
13850
|
-
.alignmentSettle .form-field {
|
|
13904
|
+
.alignmentSettle .field, .alignmentSettle .form-field {
|
|
13851
13905
|
width: 100% !important;
|
|
13852
13906
|
min-width: 100% !important;
|
|
13853
13907
|
max-width: 100% !important;
|
|
13854
13908
|
margin-bottom: 12px !important; }
|
|
13855
|
-
.alignmentSettle .form-field, .alignmentSettle .form-field:nth-child(2n) {
|
|
13909
|
+
.alignmentSettle .field, .alignmentSettle .form-field, .alignmentSettle .form-field:nth-child(2n) {
|
|
13856
13910
|
margin-right: 0 !important; }
|
|
13857
13911
|
.alignmentSettle .submit {
|
|
13858
13912
|
width: 100% !important;
|
|
@@ -13864,7 +13918,7 @@ body {
|
|
|
13864
13918
|
font-size: 16px !important; } }
|
|
13865
13919
|
|
|
13866
13920
|
@media (max-width: 480px) {
|
|
13867
|
-
.alignmentSettle .form-field {
|
|
13921
|
+
.alignmentSettle .field, .alignmentSettle .form-field {
|
|
13868
13922
|
margin-bottom: 10px !important; }
|
|
13869
13923
|
.alignmentSettle .submit button {
|
|
13870
13924
|
height: 48px !important; } }
|
|
@@ -14200,7 +14254,7 @@ body {
|
|
|
14200
14254
|
.search-icon {
|
|
14201
14255
|
position: relative;
|
|
14202
14256
|
z-index: 100;
|
|
14203
|
-
|
|
14257
|
+
right: 50px;
|
|
14204
14258
|
margin-top: -55px;
|
|
14205
14259
|
cursor: pointer; }
|
|
14206
14260
|
@media (min-width: 780px) {
|
|
@@ -16345,9 +16399,13 @@ body {
|
|
|
16345
16399
|
|
|
16346
16400
|
.ral-error-label {
|
|
16347
16401
|
width: 70%;
|
|
16348
|
-
margin-left:
|
|
16402
|
+
margin-left: 1%;
|
|
16349
16403
|
margin-top: -18px; }
|
|
16350
16404
|
|
|
16405
|
+
@media (min-width: 768px) {
|
|
16406
|
+
.ral-error-label {
|
|
16407
|
+
margin-left: 50%; } }
|
|
16408
|
+
|
|
16351
16409
|
.ral-applicant-container {
|
|
16352
16410
|
border: 1px solid #ddd;
|
|
16353
16411
|
padding: 12px;
|
|
@@ -17309,6 +17367,479 @@ body {
|
|
|
17309
17367
|
max-width: unset;
|
|
17310
17368
|
margin-left: unset; }
|
|
17311
17369
|
|
|
17370
|
+
.hrms-flex, .hrms-flex-between {
|
|
17371
|
+
display: -webkit-box;
|
|
17372
|
+
display: -ms-flexbox;
|
|
17373
|
+
display: flex; }
|
|
17374
|
+
|
|
17375
|
+
.hrms-flex-between {
|
|
17376
|
+
-webkit-box-pack: justify;
|
|
17377
|
+
-ms-flex-pack: justify;
|
|
17378
|
+
justify-content: space-between; }
|
|
17379
|
+
|
|
17380
|
+
.hrms-flex-between-center, .hrms-flex-center {
|
|
17381
|
+
display: -webkit-box;
|
|
17382
|
+
display: -ms-flexbox;
|
|
17383
|
+
display: flex;
|
|
17384
|
+
-webkit-box-align: center;
|
|
17385
|
+
-ms-flex-align: center;
|
|
17386
|
+
align-items: center; }
|
|
17387
|
+
|
|
17388
|
+
.hrms-flex-between-center {
|
|
17389
|
+
-webkit-box-pack: justify;
|
|
17390
|
+
-ms-flex-pack: justify;
|
|
17391
|
+
justify-content: space-between; }
|
|
17392
|
+
|
|
17393
|
+
.hrms-flex-column {
|
|
17394
|
+
display: -webkit-box;
|
|
17395
|
+
display: -ms-flexbox;
|
|
17396
|
+
display: flex;
|
|
17397
|
+
-webkit-box-orient: vertical;
|
|
17398
|
+
-webkit-box-direction: normal;
|
|
17399
|
+
-ms-flex-direction: column;
|
|
17400
|
+
flex-direction: column; }
|
|
17401
|
+
|
|
17402
|
+
.hrms-flex-wrap {
|
|
17403
|
+
-ms-flex-wrap: wrap;
|
|
17404
|
+
flex-wrap: wrap; }
|
|
17405
|
+
|
|
17406
|
+
.hrms-flex-end {
|
|
17407
|
+
display: -webkit-box;
|
|
17408
|
+
display: -ms-flexbox;
|
|
17409
|
+
display: flex;
|
|
17410
|
+
-webkit-box-pack: end;
|
|
17411
|
+
-ms-flex-pack: end;
|
|
17412
|
+
justify-content: flex-end; }
|
|
17413
|
+
|
|
17414
|
+
.hrms-gap-xs {
|
|
17415
|
+
grid-gap: 8px;
|
|
17416
|
+
gap: 8px; }
|
|
17417
|
+
|
|
17418
|
+
.hrms-gap-sm {
|
|
17419
|
+
grid-gap: 10px;
|
|
17420
|
+
gap: 10px; }
|
|
17421
|
+
|
|
17422
|
+
.hrms-gap-md {
|
|
17423
|
+
grid-gap: 12px;
|
|
17424
|
+
gap: 12px; }
|
|
17425
|
+
|
|
17426
|
+
.hrms-gap-base {
|
|
17427
|
+
grid-gap: 16px;
|
|
17428
|
+
gap: 16px; }
|
|
17429
|
+
|
|
17430
|
+
.hrms-gap-lg {
|
|
17431
|
+
grid-gap: 20px;
|
|
17432
|
+
gap: 20px; }
|
|
17433
|
+
|
|
17434
|
+
.hrms-mt-xs {
|
|
17435
|
+
margin-top: 8px; }
|
|
17436
|
+
|
|
17437
|
+
.hrms-mt-sm {
|
|
17438
|
+
margin-top: 10px; }
|
|
17439
|
+
|
|
17440
|
+
.hrms-mt-md {
|
|
17441
|
+
margin-top: 12px; }
|
|
17442
|
+
|
|
17443
|
+
.hrms-mt-base {
|
|
17444
|
+
margin-top: 16px; }
|
|
17445
|
+
|
|
17446
|
+
.hrms-mt-lg {
|
|
17447
|
+
margin-top: 20px; }
|
|
17448
|
+
|
|
17449
|
+
.hrms-mt-xl {
|
|
17450
|
+
margin-top: 24px; }
|
|
17451
|
+
|
|
17452
|
+
.hrms-mb-xs {
|
|
17453
|
+
margin-bottom: 8px; }
|
|
17454
|
+
|
|
17455
|
+
.hrms-mb-sm {
|
|
17456
|
+
margin-bottom: 10px; }
|
|
17457
|
+
|
|
17458
|
+
.hrms-mb-md {
|
|
17459
|
+
margin-bottom: 12px; }
|
|
17460
|
+
|
|
17461
|
+
.hrms-mb-base {
|
|
17462
|
+
margin-bottom: 16px; }
|
|
17463
|
+
|
|
17464
|
+
.hrms-mb-lg {
|
|
17465
|
+
margin-bottom: 20px; }
|
|
17466
|
+
|
|
17467
|
+
.hrms-mb-xl {
|
|
17468
|
+
margin-bottom: 24px; }
|
|
17469
|
+
|
|
17470
|
+
.hrms-ml-xs {
|
|
17471
|
+
margin-left: 8px; }
|
|
17472
|
+
|
|
17473
|
+
.hrms-ml-sm {
|
|
17474
|
+
margin-left: 10px; }
|
|
17475
|
+
|
|
17476
|
+
.hrms-ml-md {
|
|
17477
|
+
margin-left: 12px; }
|
|
17478
|
+
|
|
17479
|
+
.hrms-ml-base {
|
|
17480
|
+
margin-left: 16px; }
|
|
17481
|
+
|
|
17482
|
+
.hrms-mr-0 {
|
|
17483
|
+
margin-right: 0; }
|
|
17484
|
+
|
|
17485
|
+
.hrms-p-xs {
|
|
17486
|
+
padding: 8px; }
|
|
17487
|
+
|
|
17488
|
+
.hrms-p-sm {
|
|
17489
|
+
padding: 10px; }
|
|
17490
|
+
|
|
17491
|
+
.hrms-p-md {
|
|
17492
|
+
padding: 12px; }
|
|
17493
|
+
|
|
17494
|
+
.hrms-p-base {
|
|
17495
|
+
padding: 16px; }
|
|
17496
|
+
|
|
17497
|
+
.hrms-p-lg {
|
|
17498
|
+
padding: 20px; }
|
|
17499
|
+
|
|
17500
|
+
.hrms-text-bold {
|
|
17501
|
+
font-weight: 700; }
|
|
17502
|
+
|
|
17503
|
+
.hrms-text-semibold {
|
|
17504
|
+
font-weight: 600; }
|
|
17505
|
+
|
|
17506
|
+
.hrms-text-medium {
|
|
17507
|
+
font-weight: 500; }
|
|
17508
|
+
|
|
17509
|
+
.hrms-text-lg {
|
|
17510
|
+
font-size: 18px; }
|
|
17511
|
+
|
|
17512
|
+
.hrms-text-xl {
|
|
17513
|
+
font-size: 28px; }
|
|
17514
|
+
|
|
17515
|
+
.hrms-text-accent {
|
|
17516
|
+
color: #f47738; }
|
|
17517
|
+
|
|
17518
|
+
.hrms-text-secondary {
|
|
17519
|
+
color: #505a5f; }
|
|
17520
|
+
|
|
17521
|
+
.hrms-text-primary {
|
|
17522
|
+
color: #0b0c0c; }
|
|
17523
|
+
|
|
17524
|
+
.hrms-bg-light {
|
|
17525
|
+
background-color: #f9f9f9; }
|
|
17526
|
+
|
|
17527
|
+
.hrms-bg-lighter {
|
|
17528
|
+
background-color: #fafafa; }
|
|
17529
|
+
|
|
17530
|
+
.hrms-bg-white {
|
|
17531
|
+
background-color: #fff; }
|
|
17532
|
+
|
|
17533
|
+
.hrms-breadcrumb-wrapper {
|
|
17534
|
+
display: -webkit-box;
|
|
17535
|
+
display: -ms-flexbox;
|
|
17536
|
+
display: flex;
|
|
17537
|
+
-webkit-box-pack: justify;
|
|
17538
|
+
-ms-flex-pack: justify;
|
|
17539
|
+
justify-content: space-between;
|
|
17540
|
+
padding: 16px 20px 10px;
|
|
17541
|
+
border-bottom: 1px solid #e0e0e0;
|
|
17542
|
+
background: #fff; }
|
|
17543
|
+
@media (max-width: 768px) {
|
|
17544
|
+
.hrms-breadcrumb-wrapper {
|
|
17545
|
+
padding-left: 12px;
|
|
17546
|
+
padding-bottom: 12px;
|
|
17547
|
+
padding-right: 12px;
|
|
17548
|
+
padding-top: 12px; } }
|
|
17549
|
+
|
|
17550
|
+
.hrms-breadcrumb-back-link, .hrms-breadcrumb-wrapper {
|
|
17551
|
+
-webkit-box-align: center;
|
|
17552
|
+
-ms-flex-align: center;
|
|
17553
|
+
align-items: center; }
|
|
17554
|
+
|
|
17555
|
+
.hrms-breadcrumb-back-link {
|
|
17556
|
+
display: -webkit-inline-box;
|
|
17557
|
+
display: -ms-inline-flexbox;
|
|
17558
|
+
display: inline-flex;
|
|
17559
|
+
grid-gap: 6px;
|
|
17560
|
+
gap: 6px;
|
|
17561
|
+
color: #505a5f;
|
|
17562
|
+
text-decoration: none;
|
|
17563
|
+
font-size: 14px;
|
|
17564
|
+
font-weight: 500;
|
|
17565
|
+
-webkit-transition: all .2s ease;
|
|
17566
|
+
transition: all .2s ease;
|
|
17567
|
+
padding: 6px 12px;
|
|
17568
|
+
border-radius: 4px;
|
|
17569
|
+
white-space: nowrap; }
|
|
17570
|
+
.hrms-breadcrumb-back-link .back-arrow {
|
|
17571
|
+
font-size: 16px;
|
|
17572
|
+
font-weight: 600;
|
|
17573
|
+
line-height: 1; }
|
|
17574
|
+
.hrms-breadcrumb-back-link:hover {
|
|
17575
|
+
color: #0b4b66;
|
|
17576
|
+
background-color: #f7f7f7; }
|
|
17577
|
+
.hrms-breadcrumb-back-link:active {
|
|
17578
|
+
background-color: #e8e8e8; }
|
|
17579
|
+
@media (max-width: 768px) {
|
|
17580
|
+
.hrms-breadcrumb-back-link {
|
|
17581
|
+
padding-left: 8px;
|
|
17582
|
+
padding-bottom: 4px;
|
|
17583
|
+
padding-right: 8px;
|
|
17584
|
+
padding-top: 4px;
|
|
17585
|
+
font-size: 13px; } }
|
|
17586
|
+
|
|
17587
|
+
.hrms-card {
|
|
17588
|
+
padding: 20px;
|
|
17589
|
+
margin: 10px 0;
|
|
17590
|
+
border: 1px solid #e0e0e0;
|
|
17591
|
+
border-radius: 4px;
|
|
17592
|
+
background-color: #fff; }
|
|
17593
|
+
|
|
17594
|
+
.hrms-card-light {
|
|
17595
|
+
background-color: #f9f9f9;
|
|
17596
|
+
padding: 15px; }
|
|
17597
|
+
|
|
17598
|
+
.hrms-card-header {
|
|
17599
|
+
font-size: 28px;
|
|
17600
|
+
font-weight: 400;
|
|
17601
|
+
color: #1c1d1f; }
|
|
17602
|
+
|
|
17603
|
+
.hrms-form-section {
|
|
17604
|
+
margin-bottom: 24px; }
|
|
17605
|
+
|
|
17606
|
+
.hrms-form-header {
|
|
17607
|
+
font-size: 18px;
|
|
17608
|
+
font-weight: 700;
|
|
17609
|
+
margin-bottom: 16px; }
|
|
17610
|
+
|
|
17611
|
+
.hrms-form-grid {
|
|
17612
|
+
display: -webkit-box;
|
|
17613
|
+
display: -ms-flexbox;
|
|
17614
|
+
display: flex;
|
|
17615
|
+
-ms-flex-wrap: wrap;
|
|
17616
|
+
flex-wrap: wrap;
|
|
17617
|
+
grid-gap: 2%;
|
|
17618
|
+
gap: 2%; }
|
|
17619
|
+
.hrms-form-grid__item {
|
|
17620
|
+
-webkit-box-flex: 0;
|
|
17621
|
+
-ms-flex: 0 0 48%;
|
|
17622
|
+
flex: 0 0 48%;
|
|
17623
|
+
margin: 1%; }
|
|
17624
|
+
@media (max-width: 768px) {
|
|
17625
|
+
.hrms-form-grid__item {
|
|
17626
|
+
-webkit-box-flex: 0;
|
|
17627
|
+
-ms-flex: 0 0 100%;
|
|
17628
|
+
flex: 0 0 100%; } }
|
|
17629
|
+
|
|
17630
|
+
.hrms-form-field {
|
|
17631
|
+
margin-bottom: 24px; }
|
|
17632
|
+
|
|
17633
|
+
.hrms-form-actions {
|
|
17634
|
+
display: -webkit-box;
|
|
17635
|
+
display: -ms-flexbox;
|
|
17636
|
+
display: flex;
|
|
17637
|
+
-webkit-box-pack: justify;
|
|
17638
|
+
-ms-flex-pack: justify;
|
|
17639
|
+
justify-content: space-between;
|
|
17640
|
+
margin-top: 20px; }
|
|
17641
|
+
|
|
17642
|
+
.hrms-assignment-card, .hrms-jurisdiction-card {
|
|
17643
|
+
padding: 12px;
|
|
17644
|
+
border: 1px solid #ddd;
|
|
17645
|
+
border-radius: 4px;
|
|
17646
|
+
margin-bottom: 10px;
|
|
17647
|
+
background: #fff; }
|
|
17648
|
+
|
|
17649
|
+
.hrms-card-actions {
|
|
17650
|
+
-webkit-box-pack: end;
|
|
17651
|
+
-ms-flex-pack: end;
|
|
17652
|
+
justify-content: flex-end;
|
|
17653
|
+
grid-gap: 10px;
|
|
17654
|
+
gap: 10px;
|
|
17655
|
+
margin-top: 10px; }
|
|
17656
|
+
|
|
17657
|
+
.hrms-card-actions, .hrms-item-header {
|
|
17658
|
+
display: -webkit-box;
|
|
17659
|
+
display: -ms-flexbox;
|
|
17660
|
+
display: flex; }
|
|
17661
|
+
|
|
17662
|
+
.hrms-item-header {
|
|
17663
|
+
-webkit-box-align: center;
|
|
17664
|
+
-ms-flex-align: center;
|
|
17665
|
+
align-items: center;
|
|
17666
|
+
grid-gap: 8px;
|
|
17667
|
+
gap: 8px; }
|
|
17668
|
+
|
|
17669
|
+
.hrms-inbox-header {
|
|
17670
|
+
display: -webkit-box;
|
|
17671
|
+
display: -ms-flexbox;
|
|
17672
|
+
display: flex;
|
|
17673
|
+
-webkit-box-pack: justify;
|
|
17674
|
+
-ms-flex-pack: justify;
|
|
17675
|
+
justify-content: space-between;
|
|
17676
|
+
padding: 16px;
|
|
17677
|
+
border-bottom: 1px solid #e0e0e0; }
|
|
17678
|
+
|
|
17679
|
+
.hrms-inbox-row {
|
|
17680
|
+
padding: 12px;
|
|
17681
|
+
margin-bottom: 8px;
|
|
17682
|
+
background-color: #fafafa; }
|
|
17683
|
+
@media (max-width: 768px) {
|
|
17684
|
+
.hrms-inbox-row {
|
|
17685
|
+
padding-left: 10px;
|
|
17686
|
+
padding-bottom: 10px;
|
|
17687
|
+
padding-right: 10px;
|
|
17688
|
+
padding-top: 10px; } }
|
|
17689
|
+
|
|
17690
|
+
.hrms-inbox-actions {
|
|
17691
|
+
display: -webkit-box;
|
|
17692
|
+
display: -ms-flexbox;
|
|
17693
|
+
display: flex;
|
|
17694
|
+
grid-gap: 10px;
|
|
17695
|
+
gap: 10px;
|
|
17696
|
+
margin-left: 10px; }
|
|
17697
|
+
|
|
17698
|
+
.hrms-filter-container {
|
|
17699
|
+
margin-bottom: 16px; }
|
|
17700
|
+
|
|
17701
|
+
.hrms-filter-grid {
|
|
17702
|
+
display: grid;
|
|
17703
|
+
grid-template-columns: 1fr 1fr;
|
|
17704
|
+
grid-gap: 16px;
|
|
17705
|
+
gap: 16px; }
|
|
17706
|
+
@media (max-width: 768px) {
|
|
17707
|
+
.hrms-filter-grid {
|
|
17708
|
+
grid-template-columns: 1fr; } }
|
|
17709
|
+
|
|
17710
|
+
.hrms-badge {
|
|
17711
|
+
padding: 4px 12px;
|
|
17712
|
+
border-radius: 16px;
|
|
17713
|
+
font-size: 12px;
|
|
17714
|
+
font-weight: 500;
|
|
17715
|
+
display: inline-block;
|
|
17716
|
+
text-align: center; }
|
|
17717
|
+
.hrms-badge--category {
|
|
17718
|
+
background-color: #e0f2fe;
|
|
17719
|
+
color: #0369a1; }
|
|
17720
|
+
.hrms-badge--subcategory {
|
|
17721
|
+
background-color: #dbeafe;
|
|
17722
|
+
color: #1e40af; }
|
|
17723
|
+
.hrms-badge--zone {
|
|
17724
|
+
background-color: #d1f2eb;
|
|
17725
|
+
color: #0d6759; }
|
|
17726
|
+
.hrms-badge--role {
|
|
17727
|
+
background-color: #e9d5ff;
|
|
17728
|
+
color: #7c3aed; }
|
|
17729
|
+
|
|
17730
|
+
.hrms-response-container {
|
|
17731
|
+
display: -webkit-box;
|
|
17732
|
+
display: -ms-flexbox;
|
|
17733
|
+
display: flex;
|
|
17734
|
+
-webkit-box-pack: justify;
|
|
17735
|
+
-ms-flex-pack: justify;
|
|
17736
|
+
justify-content: space-between;
|
|
17737
|
+
-webkit-box-align: center;
|
|
17738
|
+
-ms-flex-align: center;
|
|
17739
|
+
align-items: center;
|
|
17740
|
+
margin-top: 24px; }
|
|
17741
|
+
|
|
17742
|
+
.hrms-details-section {
|
|
17743
|
+
margin-top: 20px; }
|
|
17744
|
+
|
|
17745
|
+
.hrms-details-grid {
|
|
17746
|
+
display: -webkit-box;
|
|
17747
|
+
display: -ms-flexbox;
|
|
17748
|
+
display: flex;
|
|
17749
|
+
-ms-flex-wrap: wrap;
|
|
17750
|
+
flex-wrap: wrap; }
|
|
17751
|
+
|
|
17752
|
+
.hrms-divider {
|
|
17753
|
+
border-bottom: 1px solid #e0e0e0; }
|
|
17754
|
+
|
|
17755
|
+
.hrms-section-bg {
|
|
17756
|
+
background-color: #f9f9f9;
|
|
17757
|
+
padding: 15px;
|
|
17758
|
+
border-radius: 4px; }
|
|
17759
|
+
|
|
17760
|
+
.hrms-cursor-pointer {
|
|
17761
|
+
cursor: pointer; }
|
|
17762
|
+
|
|
17763
|
+
@media (max-width: 768px) {
|
|
17764
|
+
.hrms-mobile-full {
|
|
17765
|
+
width: 100%; }
|
|
17766
|
+
.hrms-mobile-p-sm {
|
|
17767
|
+
padding: 10px; }
|
|
17768
|
+
.hrms-mobile-mb-xs {
|
|
17769
|
+
margin-bottom: 8px; } }
|
|
17770
|
+
|
|
17771
|
+
.hrms-grid-2 {
|
|
17772
|
+
grid-template-columns: 1fr 1fr;
|
|
17773
|
+
grid-gap: 16px; }
|
|
17774
|
+
@media (max-width: 768px) {
|
|
17775
|
+
.hrms-grid-2 {
|
|
17776
|
+
grid-template-columns: 1fr; } }
|
|
17777
|
+
|
|
17778
|
+
.hrms-grid-2, .hrms-grid-3 {
|
|
17779
|
+
display: grid;
|
|
17780
|
+
gap: 16px; }
|
|
17781
|
+
|
|
17782
|
+
.hrms-grid-3 {
|
|
17783
|
+
grid-template-columns: repeat(3, 1fr);
|
|
17784
|
+
grid-gap: 16px; }
|
|
17785
|
+
@media (max-width: 768px) {
|
|
17786
|
+
.hrms-grid-3 {
|
|
17787
|
+
grid-template-columns: 1fr; } }
|
|
17788
|
+
|
|
17789
|
+
.hrms-header-wrapper {
|
|
17790
|
+
margin-left: 15px; }
|
|
17791
|
+
@media (max-width: 640px) {
|
|
17792
|
+
.hrms-header-wrapper {
|
|
17793
|
+
margin-left: -12px; } }
|
|
17794
|
+
|
|
17795
|
+
.hrms-document-link {
|
|
17796
|
+
min-width: 160px;
|
|
17797
|
+
margin-right: 20px;
|
|
17798
|
+
cursor: pointer;
|
|
17799
|
+
display: inline-block; }
|
|
17800
|
+
|
|
17801
|
+
.hrms-document-svg {
|
|
17802
|
+
background: #f6f6f6;
|
|
17803
|
+
padding: 8px;
|
|
17804
|
+
margin-left: 15px; }
|
|
17805
|
+
|
|
17806
|
+
.hrms-document-name {
|
|
17807
|
+
margin-top: 8px;
|
|
17808
|
+
max-width: 196px; }
|
|
17809
|
+
|
|
17810
|
+
.hrms-jurisdiction-status-table {
|
|
17811
|
+
max-width: 640px;
|
|
17812
|
+
border: 1px solid #d6d5d4;
|
|
17813
|
+
top: 0;
|
|
17814
|
+
right: 0;
|
|
17815
|
+
bottom: 0;
|
|
17816
|
+
left: 0;
|
|
17817
|
+
width: auto;
|
|
17818
|
+
padding: .2rem;
|
|
17819
|
+
margin-bottom: 2rem; }
|
|
17820
|
+
|
|
17821
|
+
.hrms-section-title {
|
|
17822
|
+
padding-bottom: 2rem; }
|
|
17823
|
+
|
|
17824
|
+
.hrms-card .card-header {
|
|
17825
|
+
font-size: 28px;
|
|
17826
|
+
font-weight: 400;
|
|
17827
|
+
color: #1c1d1f; }
|
|
17828
|
+
|
|
17829
|
+
.hrms-delete-btn {
|
|
17830
|
+
background: none;
|
|
17831
|
+
border: none;
|
|
17832
|
+
color: #d4351c;
|
|
17833
|
+
cursor: pointer;
|
|
17834
|
+
font-size: 14px;
|
|
17835
|
+
font-weight: 500;
|
|
17836
|
+
padding: 0; }
|
|
17837
|
+
.hrms-delete-btn:hover {
|
|
17838
|
+
text-decoration: underline; }
|
|
17839
|
+
.hrms-delete-btn:disabled {
|
|
17840
|
+
opacity: .5;
|
|
17841
|
+
cursor: not-allowed; }
|
|
17842
|
+
|
|
17312
17843
|
.display-none {
|
|
17313
17844
|
display: none; }
|
|
17314
17845
|
|
|
@@ -17368,7 +17899,8 @@ body {
|
|
|
17368
17899
|
.dark {
|
|
17369
17900
|
--text-opacity:1;
|
|
17370
17901
|
color: #0d43a7;
|
|
17371
|
-
color: rgba(13, 67, 167, var(--text-opacity));
|
|
17902
|
+
color: rgba(13, 67, 167, var(--text-opacity));
|
|
17903
|
+
width: auto !important; }
|
|
17372
17904
|
|
|
17373
17905
|
.mrlg {
|
|
17374
17906
|
margin-right: 24px; }
|
|
@@ -17676,9 +18208,6 @@ body {
|
|
|
17676
18208
|
max-width: 540px;
|
|
17677
18209
|
width: 100%; }
|
|
17678
18210
|
|
|
17679
|
-
.employeeCard, .text-mobile-input-width {
|
|
17680
|
-
max-width: 100%; }
|
|
17681
|
-
|
|
17682
18211
|
.custom-time-picker {
|
|
17683
18212
|
width: 100%;
|
|
17684
18213
|
max-width: 200px; }
|
|
@@ -18048,10 +18577,6 @@ body {
|
|
|
18048
18577
|
padding: 15px;
|
|
18049
18578
|
font-size: 1.2rem; }
|
|
18050
18579
|
|
|
18051
|
-
.ndc_property_search .text-input {
|
|
18052
|
-
width: 100%;
|
|
18053
|
-
max-width: 300px; }
|
|
18054
|
-
|
|
18055
18580
|
.action-bar-wrap {
|
|
18056
18581
|
display: -webkit-box;
|
|
18057
18582
|
display: -ms-flexbox;
|
|
@@ -18089,7 +18614,7 @@ body {
|
|
|
18089
18614
|
padding: 25px; }
|
|
18090
18615
|
|
|
18091
18616
|
.step-label {
|
|
18092
|
-
font-size:
|
|
18617
|
+
font-size: 12px !important; }
|
|
18093
18618
|
|
|
18094
18619
|
.modal-action .employeeCard {
|
|
18095
18620
|
margin-left: 0 !important; }
|
|
@@ -18303,18 +18828,9 @@ body {
|
|
|
18303
18828
|
|
|
18304
18829
|
.user-profile-image-section {
|
|
18305
18830
|
position: relative;
|
|
18306
|
-
display: -webkit-box;
|
|
18307
|
-
display: -ms-flexbox;
|
|
18308
|
-
display: flex;
|
|
18309
18831
|
-webkit-box-flex: 1;
|
|
18310
18832
|
-ms-flex: 1;
|
|
18311
18833
|
flex: 1;
|
|
18312
|
-
-webkit-box-pack: center;
|
|
18313
|
-
-ms-flex-pack: center;
|
|
18314
|
-
justify-content: center;
|
|
18315
|
-
-webkit-box-align: center;
|
|
18316
|
-
-ms-flex-align: center;
|
|
18317
|
-
align-items: center;
|
|
18318
18834
|
max-width: 100%;
|
|
18319
18835
|
min-height: 280px;
|
|
18320
18836
|
border-radius: 12px 12px 0 0;
|
|
@@ -18329,9 +18845,7 @@ body {
|
|
|
18329
18845
|
.user-profile-image-section.employee {
|
|
18330
18846
|
border-radius: 0; }
|
|
18331
18847
|
|
|
18332
|
-
.user-profile-image-wrapper {
|
|
18333
|
-
height: 160px;
|
|
18334
|
-
width: 160px;
|
|
18848
|
+
.user-profile-image-section, .user-profile-image-wrapper {
|
|
18335
18849
|
display: -webkit-box;
|
|
18336
18850
|
display: -ms-flexbox;
|
|
18337
18851
|
display: flex;
|
|
@@ -18340,7 +18854,11 @@ body {
|
|
|
18340
18854
|
justify-content: center;
|
|
18341
18855
|
-webkit-box-align: center;
|
|
18342
18856
|
-ms-flex-align: center;
|
|
18343
|
-
align-items: center;
|
|
18857
|
+
align-items: center; }
|
|
18858
|
+
|
|
18859
|
+
.user-profile-image-wrapper {
|
|
18860
|
+
height: 160px;
|
|
18861
|
+
width: 160px;
|
|
18344
18862
|
-webkit-box-orient: vertical;
|
|
18345
18863
|
-webkit-box-direction: normal;
|
|
18346
18864
|
-ms-flex-direction: column;
|
|
@@ -18509,6 +19027,14 @@ body {
|
|
|
18509
19027
|
.user-profile-full-width {
|
|
18510
19028
|
width: 100%; }
|
|
18511
19029
|
|
|
19030
|
+
img, video {
|
|
19031
|
+
max-width: 100%;
|
|
19032
|
+
height: auto; }
|
|
19033
|
+
|
|
19034
|
+
audio, canvas, embed, iframe, img, object, svg, video {
|
|
19035
|
+
display: block;
|
|
19036
|
+
vertical-align: middle; }
|
|
19037
|
+
|
|
18512
19038
|
@media only screen and (max-width: 768px) {
|
|
18513
19039
|
.card-header, .employee-upyog-title, .header-title, .heading, .landing-card-header, .page-header, .section-header, .survey-card-header, h1, h2, h3, header {
|
|
18514
19040
|
font-size: 18px !important; }
|