@alexochihua/exos-library-components 2.25.26 → 2.25.28
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/style.css
CHANGED
|
@@ -5275,6 +5275,67 @@ video {
|
|
|
5275
5275
|
|
|
5276
5276
|
/* ===== Text ===== */
|
|
5277
5277
|
|
|
5278
|
+
/* --- Texto del label cuando tiene valor y/o está focused ---*/
|
|
5279
|
+
|
|
5280
|
+
/*
|
|
5281
|
+
|
|
5282
|
+
Se aplica cuando el label se recorre a la parte superior del componente.
|
|
5283
|
+
|
|
5284
|
+
*/
|
|
5285
|
+
|
|
5286
|
+
.e-select__label--hasInfo {
|
|
5287
|
+
font-family: Gotham-Book;
|
|
5288
|
+
}
|
|
5289
|
+
|
|
5290
|
+
@media (min-width: 390px) {
|
|
5291
|
+
@media not all and (min-width: 1920px) {
|
|
5292
|
+
.e-select__label--hasInfo {
|
|
5293
|
+
font-size: var(--font-size-text-3-regular);
|
|
5294
|
+
}
|
|
5295
|
+
}
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5298
|
+
@media (min-width: 1920px) {
|
|
5299
|
+
.e-select__label--hasInfo {
|
|
5300
|
+
font-size: var(--font-size-text-3-large);
|
|
5301
|
+
}
|
|
5302
|
+
}
|
|
5303
|
+
|
|
5304
|
+
/* --- Texto de la/las opciones seleccionadas del select ---*/
|
|
5305
|
+
|
|
5306
|
+
/*
|
|
5307
|
+
|
|
5308
|
+
Se aplica cuando la/las opciones están seleccionadas. Sirve para distinguir el texto de las opciones seleccionadas del texto de las opciones no seleccionadas.
|
|
5309
|
+
|
|
5310
|
+
*/
|
|
5311
|
+
|
|
5312
|
+
.e-select__itemText--selected {
|
|
5313
|
+
font-family: Gotham-Medium;
|
|
5314
|
+
}
|
|
5315
|
+
|
|
5316
|
+
@media (min-width: 390px) {
|
|
5317
|
+
@media not all and (min-width: 1920px) {
|
|
5318
|
+
.e-select__itemText--selected {
|
|
5319
|
+
font-size: var(--font-size-text-2-regular);
|
|
5320
|
+
}
|
|
5321
|
+
}
|
|
5322
|
+
}
|
|
5323
|
+
|
|
5324
|
+
@media (min-width: 1920px) {
|
|
5325
|
+
.e-select__itemText--selected {
|
|
5326
|
+
font-size: var(--font-size-text-2-large);
|
|
5327
|
+
}
|
|
5328
|
+
}
|
|
5329
|
+
|
|
5330
|
+
/* --- Texto por defecto de las opciones no seleccionadas del select, label cuando no tiene valor y/o no está focused y label cuando tiene valor ---*/
|
|
5331
|
+
|
|
5332
|
+
/*
|
|
5333
|
+
|
|
5334
|
+
Label cuando no tiene valor y/o no está focused: Es el label que se muestra por defecto cuando el select no tiene valor. Ejemplo: "Lenguaje de programación".
|
|
5335
|
+
Label cuando tiene valor: Es el label que pasa a tomar el valor de la opción seleccionada. Ejemplo: "JavaScript".
|
|
5336
|
+
|
|
5337
|
+
*/
|
|
5338
|
+
|
|
5278
5339
|
.e-select__textSize--def {
|
|
5279
5340
|
font-family: Gotham-Book;
|
|
5280
5341
|
}
|