@tattvafoundation/upyog-css 1.0.15 → 1.0.17
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 +409 -191
- package/dist/index.min.css +1 -1
- package/img/back1.jpg +0 -0
- package/img/back2.jpg +0 -0
- package/img/banner.png +0 -0
- package/img/banner2.png +0 -0
- package/img/bmc_receipt.png +0 -0
- package/img/login-back.png +0 -0
- package/img/logo-bmc.png +0 -0
- package/img/scheme-banner.png +0 -0
- package/package.json +2 -2
- package/src/components/CardBasedOptions.scss +92 -69
- package/src/components/CitizenHomeCard.scss +57 -45
- package/src/components/bmc.scss +207 -111
- package/src/components/body.scss +17 -3
- package/src/components/buttons.scss +5 -3
- package/src/components/card.scss +21 -14
- package/src/components/deonar.scss +159 -1
- package/src/components/languageSelector.scss +7 -2
- package/src/components/navbar.scss +51 -11
- package/src/components/selectdropdown.scss +2 -2
- package/src/index.scss +3 -3
- package/src/pages/citizen/HomePageWrapper.scss +33 -8
- package/src/pages/employee/inbox.scss +104 -34
- package/src/pages/employee/index.scss +216 -140
- package/src/pages/employee/login.scss +114 -57
- package/img/Free-Silai-Machine-Yojna-1-jpg.jpeg +0 -0
package/src/components/bmc.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--primary-color: #
|
|
2
|
+
--primary-color: #d1b03f;
|
|
3
3
|
--secondary-color: #0b0c0c;
|
|
4
4
|
--text-color: #333;
|
|
5
5
|
--background-light: #f0f0f0;
|
|
@@ -98,10 +98,8 @@
|
|
|
98
98
|
transform: translateX(-50%);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
.
|
|
102
|
-
|
|
103
|
-
height: 40vh;
|
|
104
|
-
background-size: cover;
|
|
101
|
+
.CardBasedOptions {
|
|
102
|
+
margin-bottom: 24px
|
|
105
103
|
}
|
|
106
104
|
|
|
107
105
|
/* Media Queries */
|
|
@@ -149,6 +147,19 @@
|
|
|
149
147
|
.TLComments p {
|
|
150
148
|
font-size: 12px;
|
|
151
149
|
}
|
|
150
|
+
|
|
151
|
+
.employeeCustomCard h2,
|
|
152
|
+
.employeeCustomCard .inboxButton {
|
|
153
|
+
font-size: 14px !important;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.CardBasedOptions .mainContent .CardBasedOptionsMainChildOption .ChildOptionName {
|
|
157
|
+
font-size: 10px
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.CardBasedOptions {
|
|
161
|
+
margin-bottom: 10px;
|
|
162
|
+
}
|
|
152
163
|
}
|
|
153
164
|
|
|
154
165
|
/* BMC Card Styles */
|
|
@@ -158,13 +169,32 @@
|
|
|
158
169
|
}
|
|
159
170
|
|
|
160
171
|
.bmc-card-aadharimage {
|
|
161
|
-
background-image: url("
|
|
172
|
+
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/aadhaarCard.jpg");
|
|
162
173
|
height: 60vh;
|
|
163
174
|
width: 100%;
|
|
164
175
|
background-size: cover;
|
|
165
176
|
background-repeat: round;
|
|
166
177
|
}
|
|
167
178
|
|
|
179
|
+
.logo-ic {
|
|
180
|
+
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/logo-bmc.png");
|
|
181
|
+
height: 80px;
|
|
182
|
+
width: 80px;
|
|
183
|
+
background-size: 80px;
|
|
184
|
+
background-position: center;
|
|
185
|
+
width: 100%;
|
|
186
|
+
background-repeat: no-repeat;
|
|
187
|
+
margin-bottom: 10px;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.employee-banner-image {
|
|
191
|
+
background-image: url("https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/login-back.png");
|
|
192
|
+
height: 100vh;
|
|
193
|
+
width: 100%;
|
|
194
|
+
background-size: cover !important;
|
|
195
|
+
position: absolute;
|
|
196
|
+
}
|
|
197
|
+
|
|
168
198
|
.aadhaar-container {
|
|
169
199
|
text-align: center;
|
|
170
200
|
}
|
|
@@ -230,7 +260,7 @@
|
|
|
230
260
|
}
|
|
231
261
|
|
|
232
262
|
.bmc-card-master-button {
|
|
233
|
-
background-color: #
|
|
263
|
+
background-color: #d1b03f;
|
|
234
264
|
width: 174px;
|
|
235
265
|
}
|
|
236
266
|
|
|
@@ -500,7 +530,7 @@
|
|
|
500
530
|
|
|
501
531
|
.toggle-switch-inner:before {
|
|
502
532
|
content: attr(data-yes);
|
|
503
|
-
background-color: #
|
|
533
|
+
background-color: #d1b03f;
|
|
504
534
|
color: #fff;
|
|
505
535
|
}
|
|
506
536
|
|
|
@@ -515,7 +545,7 @@
|
|
|
515
545
|
width: 34px;
|
|
516
546
|
/* Match the height for a square switch */
|
|
517
547
|
margin: 0;
|
|
518
|
-
background: #
|
|
548
|
+
background: #d1b03f;
|
|
519
549
|
position: relative;
|
|
520
550
|
top: 0;
|
|
521
551
|
bottom: 0;
|
|
@@ -640,7 +670,7 @@
|
|
|
640
670
|
}
|
|
641
671
|
|
|
642
672
|
.bmc-radio-wrap .bmc-radio-btn-wrap:hover .bmc-radio-btn-checkmark {
|
|
643
|
-
border-color: #
|
|
673
|
+
border-color: #d1b03f;
|
|
644
674
|
}
|
|
645
675
|
|
|
646
676
|
.bmc-radio-wrap .bmc-radio-btn {
|
|
@@ -672,12 +702,12 @@
|
|
|
672
702
|
}
|
|
673
703
|
|
|
674
704
|
.bmc-radio-wrap .bmc-radio-btn:checked + .bmc-radio-btn-checkmark {
|
|
675
|
-
border-color: #
|
|
705
|
+
border-color: #d1b03f;
|
|
676
706
|
}
|
|
677
707
|
|
|
678
708
|
.bmc-radio-wrap .bmc-radio-btn:checked + .bmc-radio-btn-checkmark:after {
|
|
679
709
|
display: block;
|
|
680
|
-
background-color: #
|
|
710
|
+
background-color: #d1b03f;
|
|
681
711
|
height: 1.25rem;
|
|
682
712
|
width: 1.25rem;
|
|
683
713
|
border-radius: 9999px;
|
|
@@ -694,7 +724,7 @@
|
|
|
694
724
|
}
|
|
695
725
|
|
|
696
726
|
.bmc-card-button {
|
|
697
|
-
background-color: #
|
|
727
|
+
background-color: #d1b03f;
|
|
698
728
|
width: 147px;
|
|
699
729
|
height: 48px;
|
|
700
730
|
color: #fff;
|
|
@@ -823,6 +853,11 @@
|
|
|
823
853
|
color: #333;
|
|
824
854
|
}
|
|
825
855
|
|
|
856
|
+
.linksWrapper a {
|
|
857
|
+
width: 100%;
|
|
858
|
+
text-align: center;
|
|
859
|
+
}
|
|
860
|
+
|
|
826
861
|
@media only screen and (max-width: 768px) {
|
|
827
862
|
.bmc-card-aadharimage {
|
|
828
863
|
display: none;
|
|
@@ -910,6 +945,10 @@
|
|
|
910
945
|
display: none;
|
|
911
946
|
}
|
|
912
947
|
|
|
948
|
+
.RightMostTopBarOptions img#topbar-logo {
|
|
949
|
+
display: none;
|
|
950
|
+
}
|
|
951
|
+
|
|
913
952
|
.bmc-radio-wrap {
|
|
914
953
|
margin-top: 8px;
|
|
915
954
|
display: flex;
|
|
@@ -996,7 +1035,7 @@
|
|
|
996
1035
|
}
|
|
997
1036
|
|
|
998
1037
|
.bmc-pagination li.active button {
|
|
999
|
-
background-color: #
|
|
1038
|
+
background-color: #d1b03f;
|
|
1000
1039
|
color: #fff;
|
|
1001
1040
|
}
|
|
1002
1041
|
|
|
@@ -1035,103 +1074,160 @@
|
|
|
1035
1074
|
padding: 0;
|
|
1036
1075
|
}
|
|
1037
1076
|
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
1077
|
.select-wrap {
|
|
1041
1078
|
margin-bottom: 24px;
|
|
1042
1079
|
position: relative;
|
|
1043
|
-
max-width: 540px;
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1080
|
+
max-width: 540px;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.select-wrap .select {
|
|
1084
|
+
position: relative;
|
|
1085
|
+
display: block;
|
|
1086
|
+
width: 100%;
|
|
1087
|
+
height: 2rem;
|
|
1088
|
+
--border-opacity: 1;
|
|
1089
|
+
border: 1px solid #464646;
|
|
1090
|
+
border-color: rgba(70, 70, 70, var(--border-opacity));
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.select-wrap .select input[type="text"],
|
|
1094
|
+
.select-wrap .select .checkbox-wrap .input-emp[type="text"],
|
|
1095
|
+
.checkbox-wrap .select-wrap .select .input-emp[type="text"] {
|
|
1096
|
+
width: calc(100% - 32px);
|
|
1097
|
+
background-color: initial;
|
|
1098
|
+
position: absolute;
|
|
1099
|
+
z-index: 10;
|
|
1100
|
+
width: 100%;
|
|
1101
|
+
height: 100%;
|
|
1102
|
+
outline: 2px solid transparent;
|
|
1103
|
+
outline-offset: 2px;
|
|
1104
|
+
padding-left: 8px;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.select-wrap .select input[type="text"],
|
|
1108
|
+
.select-wrap .select .checkbox-wrap .input-emp[type="text"],
|
|
1109
|
+
.checkbox-wrap .select-wrap .select .input-emp[type="text"],
|
|
1110
|
+
.select-wrap .select p {
|
|
1111
|
+
--text-opacity: 1;
|
|
1112
|
+
color: #0b0c0c;
|
|
1113
|
+
color: rgba(11, 12, 12, var(--text-opacity));
|
|
1114
|
+
font-size: 16px;
|
|
1115
|
+
line-height: 20px;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.select-wrap .select p {
|
|
1119
|
+
padding-top: 9px;
|
|
1120
|
+
float: left;
|
|
1121
|
+
margin-left: 8px;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.select-wrap .select img,
|
|
1125
|
+
.select-wrap .select svg {
|
|
1126
|
+
float: right;
|
|
1127
|
+
height: 2rem;
|
|
1128
|
+
width: 2rem;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.select-wrap .select svg {
|
|
1132
|
+
position: absolute;
|
|
1133
|
+
right: 0;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.select-wrap .select-active {
|
|
1137
|
+
position: relative;
|
|
1138
|
+
display: block;
|
|
1139
|
+
width: 100%;
|
|
1140
|
+
height: 2rem;
|
|
1141
|
+
--border-opacity: 1;
|
|
1142
|
+
border: 1px solid #a82227;
|
|
1143
|
+
border-color: rgba(168, 34, 39, var(--border-opacity));
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.select-wrap .select-active input[type="text"],
|
|
1147
|
+
.select-wrap .select-active .checkbox-wrap .input-emp[type="text"],
|
|
1148
|
+
.checkbox-wrap .select-wrap .select-active .input-emp[type="text"] {
|
|
1149
|
+
width: calc(100% - 32px);
|
|
1150
|
+
background-color: initial;
|
|
1151
|
+
position: absolute;
|
|
1152
|
+
z-index: 10;
|
|
1153
|
+
width: 100%;
|
|
1154
|
+
height: 100%;
|
|
1155
|
+
outline: 2px solid transparent;
|
|
1156
|
+
outline-offset: 2px;
|
|
1157
|
+
padding-left: 8px;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.select-wrap .select-active input[type="text"],
|
|
1161
|
+
.select-wrap .select-active .checkbox-wrap .input-emp[type="text"],
|
|
1162
|
+
.checkbox-wrap .select-wrap .select-active .input-emp[type="text"],
|
|
1163
|
+
.select-wrap .select-active p {
|
|
1164
|
+
--text-opacity: 1;
|
|
1165
|
+
color: #0b0c0c;
|
|
1166
|
+
color: rgba(11, 12, 12, var(--text-opacity));
|
|
1167
|
+
font-size: 16px;
|
|
1168
|
+
line-height: 20px;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.select-wrap .select-active p {
|
|
1172
|
+
float: left;
|
|
1173
|
+
margin-left: 8px;
|
|
1174
|
+
padding-top: 9px;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.select-wrap .select-active img,
|
|
1178
|
+
.select-wrap .select-active svg {
|
|
1179
|
+
float: right;
|
|
1180
|
+
height: 2rem;
|
|
1181
|
+
width: 2rem;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.select-wrap .select-active svg {
|
|
1185
|
+
position: absolute;
|
|
1186
|
+
right: 0;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.select-wrap .options-card {
|
|
1190
|
+
width: 100% !important;
|
|
1191
|
+
-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);
|
|
1192
|
+
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);
|
|
1193
|
+
position: absolute;
|
|
1194
|
+
z-index: 20;
|
|
1195
|
+
margin-top: 4px;
|
|
1196
|
+
--bg-opacity: 1;
|
|
1197
|
+
background-color: #fff;
|
|
1198
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.select-wrap .options-card p {
|
|
1202
|
+
padding-top: 14px;
|
|
1203
|
+
width: 100%;
|
|
1204
|
+
height: 2rem;
|
|
1205
|
+
padding-left: 8px;
|
|
1206
|
+
--text-opacity: 1;
|
|
1207
|
+
color: #0b0c0c;
|
|
1208
|
+
color: rgba(11, 12, 12, var(--text-opacity));
|
|
1209
|
+
font-size: 16px;
|
|
1210
|
+
line-height: 20px;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.select-wrap .options-card p:hover {
|
|
1214
|
+
--bg-opacity: 1;
|
|
1215
|
+
background-color: #eee;
|
|
1216
|
+
background-color: rgba(238, 238, 238, var(--bg-opacity));
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.RightMostTopBarOptions .select-wrap svg {
|
|
1220
|
+
fill: #000;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.scheme-ic {
|
|
1224
|
+
background: #fdf5e2;
|
|
1225
|
+
padding: 5px;
|
|
1226
|
+
border-radius: 50px;
|
|
1227
|
+
border: 1px solid #d1b03f;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.img-responsive {
|
|
1231
|
+
width: 100%;
|
|
1232
|
+
height: auto;
|
|
1233
|
+
}
|
package/src/components/body.scss
CHANGED
|
@@ -3,19 +3,26 @@ body {
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.body-container {
|
|
6
|
-
@apply
|
|
6
|
+
@apply h-full min-h-screen overflow-x-hidden;
|
|
7
7
|
position: relative !important;
|
|
8
|
-
|
|
8
|
+
background-color: #f1f5fe;
|
|
9
9
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.navbar {
|
|
13
13
|
@apply text-white bg-secondary p-md w-full mb-md;
|
|
14
|
-
background:
|
|
14
|
+
background: #fff !important;
|
|
15
|
+
color: #000 !important;
|
|
16
|
+
|
|
15
17
|
img {
|
|
16
18
|
height: 24px;
|
|
17
19
|
}
|
|
20
|
+
|
|
21
|
+
h3 {
|
|
22
|
+
border-color: #9f9e9e !important;
|
|
23
|
+
}
|
|
18
24
|
}
|
|
25
|
+
|
|
19
26
|
/* .navbar-header{
|
|
20
27
|
@apply text-navbarheader float-left px-sm
|
|
21
28
|
}
|
|
@@ -56,6 +63,7 @@ body {
|
|
|
56
63
|
margin-bottom: 10px;
|
|
57
64
|
flex-wrap: wrap
|
|
58
65
|
}
|
|
66
|
+
|
|
59
67
|
.bread-crumb--item {
|
|
60
68
|
margin-left: 5px;
|
|
61
69
|
|
|
@@ -97,18 +105,23 @@ body {
|
|
|
97
105
|
|
|
98
106
|
.app-container {
|
|
99
107
|
width: 100%;
|
|
108
|
+
|
|
100
109
|
form {
|
|
101
110
|
.card {
|
|
102
111
|
max-width: 960px;
|
|
112
|
+
|
|
103
113
|
h2 {
|
|
104
114
|
text-align: left;
|
|
105
115
|
}
|
|
116
|
+
|
|
106
117
|
.field-container {
|
|
107
118
|
max-width: 540px;
|
|
108
119
|
}
|
|
120
|
+
|
|
109
121
|
button {
|
|
110
122
|
max-width: 240px;
|
|
111
123
|
}
|
|
124
|
+
|
|
112
125
|
.input-otp-wrap,
|
|
113
126
|
.card-text-button {
|
|
114
127
|
text-align: left;
|
|
@@ -138,6 +151,7 @@ body {
|
|
|
138
151
|
.body-container::-webkit-scrollbar {
|
|
139
152
|
display: none;
|
|
140
153
|
}
|
|
154
|
+
|
|
141
155
|
.audit-card {
|
|
142
156
|
width: 80%;
|
|
143
157
|
margin-left: -21%;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.selector-button-primary {
|
|
2
|
-
@apply h-8
|
|
2
|
+
@apply h-8 text-center border-b-2 border-input-border border-solid outline-none px-lg;
|
|
3
|
+
background-color: #d1b03f;
|
|
3
4
|
|
|
4
5
|
&:focus {
|
|
5
6
|
@apply outline-none;
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
}
|
|
23
24
|
}
|
|
24
25
|
|
|
25
|
-
.input-mirror-selector-button{
|
|
26
|
+
.input-mirror-selector-button {
|
|
26
27
|
@apply h-16 bg-border text-center border-b-2 border-input-border border-solid outline-none px-lg !important;
|
|
27
28
|
|
|
28
29
|
&:focus {
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
}
|
|
36
37
|
|
|
37
38
|
.selector-button-primary-disabled {
|
|
38
|
-
@apply h-8
|
|
39
|
+
@apply h-8 text-center border-b-2 border-input-border border-solid outline-none px-lg opacity-50;
|
|
39
40
|
|
|
40
41
|
&:focus {
|
|
41
42
|
@apply outline-none;
|
|
@@ -45,6 +46,7 @@
|
|
|
45
46
|
@apply font-rc font-medium text-legend text-white;
|
|
46
47
|
}
|
|
47
48
|
}
|
|
49
|
+
|
|
48
50
|
.submit-bar:focus {
|
|
49
51
|
@apply outline-none !important;
|
|
50
52
|
}
|
package/src/components/card.scss
CHANGED
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
@apply text-text-primary text-heading-m font-bold;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
.card-section-sub-text{
|
|
81
|
+
.card-section-sub-text {
|
|
82
82
|
@apply text-text-primary text-body-s;
|
|
83
83
|
}
|
|
84
84
|
|
|
@@ -126,10 +126,13 @@
|
|
|
126
126
|
padding-left: 25px;
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
|
+
|
|
129
130
|
.employeeCard.fsm {
|
|
130
131
|
margin-bottom: 64px !important;
|
|
131
132
|
margin-left: 0px !important;
|
|
132
|
-
margin-right: 16px !important;
|
|
133
|
+
margin-right: 16px !important;
|
|
134
|
+
}
|
|
135
|
+
|
|
133
136
|
.header-wrap {
|
|
134
137
|
@apply flex mb-md;
|
|
135
138
|
|
|
@@ -137,8 +140,7 @@
|
|
|
137
140
|
margin-right: auto;
|
|
138
141
|
}
|
|
139
142
|
|
|
140
|
-
.header-content {
|
|
141
|
-
}
|
|
143
|
+
.header-content {}
|
|
142
144
|
|
|
143
145
|
.header-end {
|
|
144
146
|
margin-left: auto;
|
|
@@ -181,10 +183,11 @@
|
|
|
181
183
|
}
|
|
182
184
|
|
|
183
185
|
@screen dt {
|
|
186
|
+
|
|
184
187
|
.submit-bar,
|
|
185
188
|
.submit-bar-disabled {
|
|
186
189
|
width: 240px;
|
|
187
|
-
background-color: #
|
|
190
|
+
background-color: #d1b03f !important;
|
|
188
191
|
height: 2rem !important
|
|
189
192
|
}
|
|
190
193
|
|
|
@@ -240,7 +243,7 @@
|
|
|
240
243
|
@apply text-heading-m-dt;
|
|
241
244
|
}
|
|
242
245
|
|
|
243
|
-
.card-section-sub-text{
|
|
246
|
+
.card-section-sub-text {
|
|
244
247
|
@apply text-text-primary text-body-s-dt;
|
|
245
248
|
}
|
|
246
249
|
|
|
@@ -275,6 +278,7 @@
|
|
|
275
278
|
.field {
|
|
276
279
|
width: 50%;
|
|
277
280
|
margin-right: 20%;
|
|
281
|
+
|
|
278
282
|
.field {
|
|
279
283
|
margin-right: unset;
|
|
280
284
|
}
|
|
@@ -303,8 +307,7 @@
|
|
|
303
307
|
margin-right: auto;
|
|
304
308
|
}
|
|
305
309
|
|
|
306
|
-
.header-content {
|
|
307
|
-
}
|
|
310
|
+
.header-content {}
|
|
308
311
|
|
|
309
312
|
.header-end {
|
|
310
313
|
margin-left: auto;
|
|
@@ -336,6 +339,7 @@
|
|
|
336
339
|
.button-sub-text {
|
|
337
340
|
width: 240px;
|
|
338
341
|
}
|
|
342
|
+
|
|
339
343
|
.home-page-info-banner-wrap {
|
|
340
344
|
max-width: 45%;
|
|
341
345
|
min-width: 100%;
|
|
@@ -343,8 +347,9 @@
|
|
|
343
347
|
margin-right: 24px;
|
|
344
348
|
margin-bottom: 24px;
|
|
345
349
|
}
|
|
346
|
-
|
|
347
|
-
}
|
|
350
|
+
|
|
351
|
+
.info-banner-wrap-citizen-override {}
|
|
352
|
+
|
|
348
353
|
.oc-aknowledgement-screen {
|
|
349
354
|
width: auto;
|
|
350
355
|
min-width: 240px;
|
|
@@ -374,6 +379,7 @@
|
|
|
374
379
|
height: 70px !important;
|
|
375
380
|
margin-bottom: 15px !important;
|
|
376
381
|
}
|
|
382
|
+
|
|
377
383
|
.employee-main-application-details {
|
|
378
384
|
padding: 10px !important;
|
|
379
385
|
}
|
|
@@ -395,11 +401,12 @@
|
|
|
395
401
|
width: 100% !important;
|
|
396
402
|
}
|
|
397
403
|
|
|
398
|
-
.language-selector .submit-bar,
|
|
399
|
-
|
|
404
|
+
.language-selector .submit-bar,
|
|
405
|
+
.submit-bar-disabled {
|
|
406
|
+
background-color: #d1b03f !important;
|
|
400
407
|
}
|
|
401
408
|
|
|
402
|
-
.owner-details{
|
|
409
|
+
.owner-details {
|
|
403
410
|
display: flex;
|
|
404
411
|
flex-direction: row;
|
|
405
412
|
width: 100%;
|
|
@@ -407,6 +414,6 @@
|
|
|
407
414
|
justify-content: space-between
|
|
408
415
|
}
|
|
409
416
|
|
|
410
|
-
.owner-details-child{
|
|
417
|
+
.owner-details-child {
|
|
411
418
|
width: 50%;
|
|
412
419
|
}
|