@pmidc/upyog-css 1.2.29 → 1.2.31
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 +899 -155
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/buttons.scss +0 -5
- package/src/components/radiobtn.scss +4 -2
- package/src/components/textfields.scss +6 -0
- package/src/index.scss +270 -14
- package/src/modules/hrms/index.scss +484 -2
- package/src/pages/common/newApplicationTimeline.scss +1 -0
|
@@ -267,7 +267,7 @@ $hover-bg: #f5f5f5;
|
|
|
267
267
|
padding: $hrms-space-base $hrms-space-lg $hrms-space-sm $hrms-space-lg;
|
|
268
268
|
border-bottom: 1px solid $hrms-border-light;
|
|
269
269
|
background: $hrms-bg-white;
|
|
270
|
-
margin-top:
|
|
270
|
+
margin-top:1rem;
|
|
271
271
|
|
|
272
272
|
@media (max-width: 768px) {
|
|
273
273
|
padding: $hrms-space-md;
|
|
@@ -409,7 +409,7 @@ $hover-bg: #f5f5f5;
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
&__required-asterisk {
|
|
412
|
-
color: red;
|
|
412
|
+
color: red !important;
|
|
413
413
|
}
|
|
414
414
|
|
|
415
415
|
&__button-container {
|
|
@@ -843,4 +843,486 @@ $hover-bg: #f5f5f5;
|
|
|
843
843
|
|
|
844
844
|
.hrms-w-full-form{
|
|
845
845
|
width: 100% !important;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
.hrms-summary-page {
|
|
850
|
+
padding: 2rem;
|
|
851
|
+
max-width: 1200px;
|
|
852
|
+
margin: 0 auto;
|
|
853
|
+
background: #F9FAFB;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.hrms-summary-main-heading {
|
|
857
|
+
font-size: 2rem;
|
|
858
|
+
font-weight: 700;
|
|
859
|
+
margin-bottom: 2rem;
|
|
860
|
+
color: #111827;
|
|
861
|
+
border-bottom: 4px solid #F97316;
|
|
862
|
+
padding-bottom: 1rem;
|
|
863
|
+
letter-spacing: -0.025em;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
.hrms-summary-card {
|
|
867
|
+
background: #FFFFFF;
|
|
868
|
+
border: 1px solid #E5E7EB;
|
|
869
|
+
border-radius: 12px;
|
|
870
|
+
padding: 2rem;
|
|
871
|
+
margin-bottom: 2rem;
|
|
872
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
873
|
+
transition: box-shadow 0.2s ease;
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.hrms-summary-card:hover {
|
|
877
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.hrms-summary-section-heading {
|
|
881
|
+
font-size: 1.5rem;
|
|
882
|
+
font-weight: 600;
|
|
883
|
+
margin-bottom: 1.5rem;
|
|
884
|
+
color: #2563EB;
|
|
885
|
+
border-bottom: 2px solid #DBEAFE;
|
|
886
|
+
padding-bottom: 0.75rem;
|
|
887
|
+
display: flex;
|
|
888
|
+
align-items: center;
|
|
889
|
+
letter-spacing: -0.0125em;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.hrms-summary-section-heading::before {
|
|
893
|
+
content: '';
|
|
894
|
+
width: 4px;
|
|
895
|
+
height: 24px;
|
|
896
|
+
background: #2563EB;
|
|
897
|
+
margin-right: 12px;
|
|
898
|
+
border-radius: 2px;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.hrms-summary-section {
|
|
902
|
+
display: flex;
|
|
903
|
+
flex-direction: column;
|
|
904
|
+
gap: 0;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.hrms-summary-row {
|
|
908
|
+
display: grid;
|
|
909
|
+
grid-template-columns: 220px 1fr;
|
|
910
|
+
gap: 2rem;
|
|
911
|
+
padding: 1rem 0;
|
|
912
|
+
border-bottom: 1px solid #F3F4F6;
|
|
913
|
+
align-items: start;
|
|
914
|
+
transition: background 0.15s ease;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.hrms-summary-row:hover {
|
|
918
|
+
background: #F9FAFB;
|
|
919
|
+
padding-left: 0.75rem;
|
|
920
|
+
padding-right: 0.75rem;
|
|
921
|
+
margin-left: -0.75rem;
|
|
922
|
+
margin-right: -0.75rem;
|
|
923
|
+
border-radius: 6px;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.hrms-summary-row:last-child {
|
|
927
|
+
border-bottom: none;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.hrms-summary-label {
|
|
931
|
+
font-weight: 600;
|
|
932
|
+
color: #6B7280;
|
|
933
|
+
font-size: 0.9375rem;
|
|
934
|
+
line-height: 1.5;
|
|
935
|
+
text-transform: capitalize;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.hrms-summary-value{
|
|
939
|
+
color: #111827;
|
|
940
|
+
font-size: 0.9375rem;
|
|
941
|
+
line-height: 1.6;
|
|
942
|
+
word-break: break-word;
|
|
943
|
+
font-weight: 500;
|
|
944
|
+
max-width: 400px;
|
|
945
|
+
text-align: end;
|
|
946
|
+
@media (max-width: 768px) {
|
|
947
|
+
max-width: 100px;
|
|
948
|
+
text-align: end;
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.hrms-summary-nested-card {
|
|
953
|
+
background: #F9FAFB;
|
|
954
|
+
border: 1px solid #E5E7EB;
|
|
955
|
+
border-left: 4px solid #3B82F6;
|
|
956
|
+
border-radius: 8px;
|
|
957
|
+
padding: 1.5rem;
|
|
958
|
+
margin-bottom: 1rem;
|
|
959
|
+
transition: all 0.2s ease;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.hrms-summary-nested-card:hover {
|
|
963
|
+
border-left-color: #2563EB;
|
|
964
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.hrms-summary-nested-card:last-child {
|
|
968
|
+
margin-bottom: 0;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.hrms-summary-nested-header {
|
|
972
|
+
font-size: 1.125rem;
|
|
973
|
+
font-weight: 600;
|
|
974
|
+
color: #374151;
|
|
975
|
+
margin-bottom: 1rem;
|
|
976
|
+
padding-bottom: 0.75rem;
|
|
977
|
+
border-bottom: 2px solid #E5E7EB;
|
|
978
|
+
display: flex;
|
|
979
|
+
justify-content: space-between;
|
|
980
|
+
align-items: center;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.hrms-summary-badge {
|
|
984
|
+
display: inline-block;
|
|
985
|
+
background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
|
|
986
|
+
color: #1E40AF;
|
|
987
|
+
padding: 0.375rem 1rem;
|
|
988
|
+
border-radius: 20px;
|
|
989
|
+
font-size: 0.8125rem;
|
|
990
|
+
font-weight: 600;
|
|
991
|
+
letter-spacing: 0.025em;
|
|
992
|
+
text-transform: uppercase;
|
|
993
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.hrms-summary-empty {
|
|
997
|
+
text-align: center;
|
|
998
|
+
padding: 2rem;
|
|
999
|
+
color: #9CA3AF;
|
|
1000
|
+
font-size: 0.9375rem;
|
|
1001
|
+
font-style: italic;
|
|
1002
|
+
background: #F9FAFB;
|
|
1003
|
+
border-radius: 8px;
|
|
1004
|
+
border: 2px dashed #E5E7EB;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.hrms-summary-declaration {
|
|
1008
|
+
display: flex;
|
|
1009
|
+
align-items: flex-start;
|
|
1010
|
+
gap: 1rem;
|
|
1011
|
+
margin-top: 2.5rem;
|
|
1012
|
+
padding: 1.75rem;
|
|
1013
|
+
background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
|
|
1014
|
+
border: 2px solid #FB923C;
|
|
1015
|
+
border-radius: 12px;
|
|
1016
|
+
cursor: pointer;
|
|
1017
|
+
transition: all 0.2s ease;
|
|
1018
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.hrms-summary-declaration:hover {
|
|
1022
|
+
background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
|
|
1023
|
+
border-color: #F97316;
|
|
1024
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
1025
|
+
transform: translateY(-1px);
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.hrms-summary-checkbox {
|
|
1029
|
+
width: 22px;
|
|
1030
|
+
height: 22px;
|
|
1031
|
+
cursor: pointer;
|
|
1032
|
+
margin-top: 2px;
|
|
1033
|
+
flex-shrink: 0;
|
|
1034
|
+
accent-color: #F97316;
|
|
1035
|
+
border: 2px solid #FB923C;
|
|
1036
|
+
border-radius: 4px;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.hrms-summary-declaration-label {
|
|
1040
|
+
cursor: pointer;
|
|
1041
|
+
margin: 0;
|
|
1042
|
+
font-size: 1rem;
|
|
1043
|
+
color: #7C2D12;
|
|
1044
|
+
line-height: 1.7;
|
|
1045
|
+
font-weight: 500;
|
|
1046
|
+
user-select: none;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
@media (max-width: 768px) {
|
|
1050
|
+
.hrms-summary-page {
|
|
1051
|
+
padding: 1rem;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.hrms-summary-main-heading {
|
|
1055
|
+
font-size: 1.5rem;
|
|
1056
|
+
margin-bottom: 1.5rem;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.hrms-summary-card {
|
|
1060
|
+
padding: 1.25rem;
|
|
1061
|
+
margin-bottom: 1.5rem;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.hrms-summary-section-heading {
|
|
1065
|
+
font-size: 1.25rem;
|
|
1066
|
+
margin-bottom: 1rem;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.hrms-summary-row {
|
|
1070
|
+
grid-template-columns: 1fr;
|
|
1071
|
+
gap: 0.5rem;
|
|
1072
|
+
padding: 0.75rem 0;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.hrms-summary-row:hover {
|
|
1076
|
+
background: transparent;
|
|
1077
|
+
padding-left: 0;
|
|
1078
|
+
padding-right: 0;
|
|
1079
|
+
margin-left: 0;
|
|
1080
|
+
margin-right: 0;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.hrms-summary-label {
|
|
1084
|
+
margin-bottom: 0.25rem;
|
|
1085
|
+
font-size: 0.875rem;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
.hrms-summary-nested-card {
|
|
1090
|
+
padding: 1rem;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.hrms-summary-nested-header {
|
|
1094
|
+
font-size: 1rem;
|
|
1095
|
+
flex-direction: column;
|
|
1096
|
+
align-items: flex-start;
|
|
1097
|
+
gap: 0.5rem;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.hrms-summary-declaration {
|
|
1101
|
+
padding: 1.25rem;
|
|
1102
|
+
gap: 0.75rem;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.hrms-summary-declaration-label {
|
|
1106
|
+
font-size: 0.9375rem;
|
|
1107
|
+
}
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
.hrms-text-transform-none{
|
|
1112
|
+
text-transform: capitalize !important;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.hrmsMLS{
|
|
1116
|
+
.multi-select-dropdown-wrap {
|
|
1117
|
+
.master,
|
|
1118
|
+
.master-active {
|
|
1119
|
+
min-height: 50px;
|
|
1120
|
+
border: 1px solid #D6D5D5;
|
|
1121
|
+
border-radius: 8px;
|
|
1122
|
+
background: #fff;
|
|
1123
|
+
padding: 0;
|
|
1124
|
+
|
|
1125
|
+
input {
|
|
1126
|
+
height: 40px;
|
|
1127
|
+
border: none;
|
|
1128
|
+
background: transparent;
|
|
1129
|
+
padding: 0 12px;
|
|
1130
|
+
font-size: 16px;
|
|
1131
|
+
|
|
1132
|
+
&:focus {
|
|
1133
|
+
outline: none;
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.label {
|
|
1138
|
+
position: absolute;
|
|
1139
|
+
right: 0;
|
|
1140
|
+
top: 0;
|
|
1141
|
+
height: 100%;
|
|
1142
|
+
display: flex;
|
|
1143
|
+
align-items: center;
|
|
1144
|
+
padding: 0 12px;
|
|
1145
|
+
pointer-events: none;
|
|
1146
|
+
|
|
1147
|
+
p {
|
|
1148
|
+
margin: 0;
|
|
1149
|
+
color: #505A5F;
|
|
1150
|
+
font-size: 16px;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
svg {
|
|
1154
|
+
margin-left: 8px;
|
|
1155
|
+
}
|
|
1156
|
+
}
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.master-active {
|
|
1160
|
+
border-color: #1E40AF;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.server {
|
|
1164
|
+
border: 1px solid #D6D5D5;
|
|
1165
|
+
border-top: none;
|
|
1166
|
+
max-height: 300px;
|
|
1167
|
+
overflow-y: auto;
|
|
1168
|
+
background: white;
|
|
1169
|
+
|
|
1170
|
+
> div {
|
|
1171
|
+
padding: 8px 12px;
|
|
1172
|
+
display: flex;
|
|
1173
|
+
align-items: center;
|
|
1174
|
+
cursor: pointer;
|
|
1175
|
+
|
|
1176
|
+
&:hover {
|
|
1177
|
+
background: #F7F7F7;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
input[type="checkbox"] {
|
|
1181
|
+
margin-right: 8px;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.label {
|
|
1185
|
+
margin: 0;
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.hrms-search-grid-container {
|
|
1193
|
+
display: grid;
|
|
1194
|
+
grid-template-columns: repeat(3, 1fr);
|
|
1195
|
+
gap: 1rem;
|
|
1196
|
+
width: 100%;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.hrms-search-field-label {
|
|
1200
|
+
margin-bottom: 8px;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.hrms-search-button-wrapper {
|
|
1204
|
+
display: flex;
|
|
1205
|
+
align-items: center;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.hrms-search-submit-btn {
|
|
1209
|
+
width: 100%;
|
|
1210
|
+
background: linear-gradient(135deg, #2563eb, #1e40af);
|
|
1211
|
+
color: #fff;
|
|
1212
|
+
border: none;
|
|
1213
|
+
border-radius: 8px;
|
|
1214
|
+
padding: 8px 24px;
|
|
1215
|
+
font-size: 16px;
|
|
1216
|
+
font-weight: 700;
|
|
1217
|
+
cursor: pointer;
|
|
1218
|
+
height: 45px;
|
|
1219
|
+
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
1220
|
+
transition: all 0.2s ease;
|
|
1221
|
+
text-transform: none;
|
|
1222
|
+
|
|
1223
|
+
&:hover {
|
|
1224
|
+
background: linear-gradient(135deg, #1e40af, #1e3a8a);
|
|
1225
|
+
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
&:active {
|
|
1229
|
+
transform: translateY(1px);
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.hrms-search-clear-btn {
|
|
1234
|
+
width: 100%;
|
|
1235
|
+
background-color: transparent;
|
|
1236
|
+
color: rgb(37, 99, 235);
|
|
1237
|
+
border: 1px solid rgb(37, 99, 235);
|
|
1238
|
+
border-radius: 8px;
|
|
1239
|
+
padding: 8px 24px;
|
|
1240
|
+
font-size: 16px;
|
|
1241
|
+
font-weight: 700;
|
|
1242
|
+
cursor: pointer;
|
|
1243
|
+
height: 45px;
|
|
1244
|
+
transition: all 0.2s ease;
|
|
1245
|
+
text-transform: none;
|
|
1246
|
+
|
|
1247
|
+
&:hover {
|
|
1248
|
+
background-color: rgb(37, 99, 235);
|
|
1249
|
+
color: #fff;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
&:active {
|
|
1253
|
+
transform: translateY(1px);
|
|
1254
|
+
}
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
.hrms-modalbutton-disable .selector-button-primary-disabled {
|
|
1259
|
+
min-height: 40px !important;
|
|
1260
|
+
height: auto !important;
|
|
1261
|
+
width: 30% !important;
|
|
1262
|
+
|
|
1263
|
+
padding: 0.5rem 1rem !important;
|
|
1264
|
+
padding-left: 1rem !important;
|
|
1265
|
+
padding-right: 1rem !important;
|
|
1266
|
+
|
|
1267
|
+
border: none !important;
|
|
1268
|
+
border-bottom: none !important;
|
|
1269
|
+
border-radius: 0.375rem !important;
|
|
1270
|
+
outline: none !important;
|
|
1271
|
+
|
|
1272
|
+
background-color: #2947a3 !important;
|
|
1273
|
+
color: #fff !important;
|
|
1274
|
+
|
|
1275
|
+
font-family: Noto Sans, sans-serif !important;
|
|
1276
|
+
font-weight: 500 !important;
|
|
1277
|
+
font-size: 0.875rem !important;
|
|
1278
|
+
line-height: 1.25rem !important;
|
|
1279
|
+
text-align: center !important;
|
|
1280
|
+
|
|
1281
|
+
display: inline-flex !important;
|
|
1282
|
+
align-items: center !important;
|
|
1283
|
+
justify-content: center !important;
|
|
1284
|
+
|
|
1285
|
+
white-space: normal !important;
|
|
1286
|
+
word-break: break-word !important;
|
|
1287
|
+
word-wrap: break-word !important;
|
|
1288
|
+
|
|
1289
|
+
transition: all 0.2s ease !important;
|
|
1290
|
+
|
|
1291
|
+
margin: 0 !important;
|
|
1292
|
+
|
|
1293
|
+
opacity: 0.5 !important;
|
|
1294
|
+
cursor: not-allowed !important;
|
|
1295
|
+
}
|
|
1296
|
+
.hrms-modalbutton-disable .selector-button-primary-disabled h2 {
|
|
1297
|
+
color: #fff !important;
|
|
1298
|
+
margin: 0 !important;
|
|
1299
|
+
}
|
|
1300
|
+
.hrms-modalbutton-disable .selector-button-primary {
|
|
1301
|
+
opacity: 1 !important;
|
|
1302
|
+
cursor: pointer !important;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.hrms-delete-icon-button {
|
|
1306
|
+
cursor: pointer;
|
|
1307
|
+
padding: 4px;
|
|
1308
|
+
border-radius: 4px;
|
|
1309
|
+
display: flex;
|
|
1310
|
+
align-items: center;
|
|
1311
|
+
justify-content: center;
|
|
1312
|
+
transition: all 0.2s ease;
|
|
1313
|
+
background-color: transparent;
|
|
1314
|
+
|
|
1315
|
+
&:hover {
|
|
1316
|
+
transform: scale(1.1);
|
|
1317
|
+
opacity: 0.8;
|
|
1318
|
+
|
|
1319
|
+
svg path {
|
|
1320
|
+
fill: #2341e9b2 !important;
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
svg path {
|
|
1325
|
+
fill: #6b7280;
|
|
1326
|
+
transition: fill 0.2s ease;
|
|
1327
|
+
}
|
|
846
1328
|
}
|