general-library-union 2.7.34 → 2.7.36
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/esm2022/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.mjs +3 -3
- package/fesm2022/general-library-union.mjs +2 -2
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/primeng/sass/overrides/_theme_styles.scss +30 -5
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +31 -17
package/package.json
CHANGED
|
@@ -1130,16 +1130,20 @@ min-height: 60px !important;
|
|
|
1130
1130
|
border-radius: 0;
|
|
1131
1131
|
}
|
|
1132
1132
|
|
|
1133
|
+
.menu-accordeon .p-accordion-content td{
|
|
1134
|
+
padding: 0 !important;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1133
1137
|
|
|
1134
1138
|
.hijo-seleccionado {
|
|
1135
|
-
border-left: 5px solid
|
|
1139
|
+
border-left: 5px solid var(--color-400);
|
|
1136
1140
|
padding-left: 10px;
|
|
1137
1141
|
padding: 8px 15px 5px;
|
|
1138
|
-
min-height:
|
|
1142
|
+
min-height: 30px;
|
|
1139
1143
|
margin-left: 15px;
|
|
1140
1144
|
|
|
1141
1145
|
.hijo-seleccionado {
|
|
1142
|
-
border-left: 5px solid
|
|
1146
|
+
border-left: 5px solid var(--color-100);
|
|
1143
1147
|
padding-left: 10px;
|
|
1144
1148
|
padding: 8px 15px 5px;
|
|
1145
1149
|
min-height: 30px;
|
|
@@ -1148,9 +1152,9 @@ min-height: 60px !important;
|
|
|
1148
1152
|
}
|
|
1149
1153
|
|
|
1150
1154
|
.hijo-noseleccionado {
|
|
1151
|
-
border-left: 5px solid
|
|
1155
|
+
border-left: 5px solid var(--color-100);
|
|
1152
1156
|
padding: 8px 15px 5px;
|
|
1153
|
-
min-height:
|
|
1157
|
+
min-height: 30px;
|
|
1154
1158
|
margin-left: 15px;
|
|
1155
1159
|
}
|
|
1156
1160
|
|
|
@@ -1279,6 +1283,27 @@ min-height: 60px !important;
|
|
|
1279
1283
|
|
|
1280
1284
|
}
|
|
1281
1285
|
|
|
1286
|
+
|
|
1287
|
+
@media (max-width:1024px){
|
|
1288
|
+
.UploadFoto-btn h1 {
|
|
1289
|
+
font-size: 1rem !important;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.avatar-container {
|
|
1293
|
+
width: 70px;
|
|
1294
|
+
height: 70px;
|
|
1295
|
+
border: solid 5px var(--color-700);
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link {
|
|
1299
|
+
font-size: 0.8rem;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
.p-accordion .p-accordion-header .p-accordion-header-link {
|
|
1303
|
+
font-size: 0.8rem;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
}
|
|
1282
1307
|
/******************************************************************************
|
|
1283
1308
|
* CARD INSTRUCCIONES styles
|
|
1284
1309
|
*****************************************************************************/
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
1
3
|
/* Add your customizations of the theme here */
|
|
2
4
|
@use "sass:color";
|
|
3
5
|
|
|
@@ -1178,12 +1180,17 @@ body {
|
|
|
1178
1180
|
border-radius: 0;
|
|
1179
1181
|
}
|
|
1180
1182
|
|
|
1183
|
+
.menu-accordeon .p-accordion-content td{
|
|
1184
|
+
padding: 0 !important;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
|
|
1181
1188
|
|
|
1182
1189
|
.hijo-seleccionado {
|
|
1183
1190
|
border-left: 5px solid var(--color-200);
|
|
1184
1191
|
padding-left: 10px;
|
|
1185
1192
|
padding: 8px 15px 5px;
|
|
1186
|
-
min-height:
|
|
1193
|
+
min-height: 30px;
|
|
1187
1194
|
margin-left: 15px;
|
|
1188
1195
|
|
|
1189
1196
|
.hijo-seleccionado {
|
|
@@ -1198,7 +1205,7 @@ body {
|
|
|
1198
1205
|
.hijo-noseleccionado {
|
|
1199
1206
|
border-left: 5px solid #4f4f5f;
|
|
1200
1207
|
padding: 8px 15px 5px;
|
|
1201
|
-
min-height:
|
|
1208
|
+
min-height: 30px;
|
|
1202
1209
|
margin-left: 15px;
|
|
1203
1210
|
}
|
|
1204
1211
|
|
|
@@ -1214,8 +1221,8 @@ body {
|
|
|
1214
1221
|
}
|
|
1215
1222
|
|
|
1216
1223
|
.avatar-image {
|
|
1217
|
-
width:
|
|
1218
|
-
height:
|
|
1224
|
+
width: 104%;
|
|
1225
|
+
height: 110%;
|
|
1219
1226
|
object-fit: cover;
|
|
1220
1227
|
}
|
|
1221
1228
|
|
|
@@ -1336,6 +1343,25 @@ body {
|
|
|
1336
1343
|
|
|
1337
1344
|
}
|
|
1338
1345
|
|
|
1346
|
+
@media (max-width:1024px){
|
|
1347
|
+
.UploadFoto-btn h1 {
|
|
1348
|
+
font-size: 1rem !important;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
.avatar-container{
|
|
1352
|
+
width: 70px;
|
|
1353
|
+
height: 70px;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link {
|
|
1357
|
+
font-size: 0.8rem;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.p-accordion .p-accordion-header .p-accordion-header-link {
|
|
1361
|
+
font-size: 0.8rem;
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1339
1365
|
|
|
1340
1366
|
|
|
1341
1367
|
/******************************************************************************
|
|
@@ -2814,7 +2840,7 @@ li.btn-descarga-masiva a {
|
|
|
2814
2840
|
}
|
|
2815
2841
|
|
|
2816
2842
|
.hojavida {
|
|
2817
|
-
margin-right:
|
|
2843
|
+
margin-right: 21.5% !important;
|
|
2818
2844
|
margin-left: auto !important;
|
|
2819
2845
|
}
|
|
2820
2846
|
|
|
@@ -2996,12 +3022,6 @@ li.btn-descarga-masiva a {
|
|
|
2996
3022
|
text-align: center
|
|
2997
3023
|
}
|
|
2998
3024
|
|
|
2999
|
-
.avatar-image {
|
|
3000
|
-
width: 100%;
|
|
3001
|
-
height: 100%;
|
|
3002
|
-
object-fit: cover;
|
|
3003
|
-
}
|
|
3004
|
-
|
|
3005
3025
|
|
|
3006
3026
|
p.chip {
|
|
3007
3027
|
background: #27272b;
|
|
@@ -4453,12 +4473,6 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
|
|
|
4453
4473
|
box-shadow: 2px 2px 6px 2px #0000002b;
|
|
4454
4474
|
}
|
|
4455
4475
|
|
|
4456
|
-
.avatar-image {
|
|
4457
|
-
width: 100%;
|
|
4458
|
-
height: 100%;
|
|
4459
|
-
object-fit: cover;
|
|
4460
|
-
background: transparent;
|
|
4461
|
-
}
|
|
4462
4476
|
|
|
4463
4477
|
.sombra-caja.icono-naranja .pi-chevron-down {
|
|
4464
4478
|
color: var(--color-500) !important;
|