@unifiedsoftware/styles 2.0.0-alpha.3 → 2.0.0-alpha.33
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/css/fci.css +618 -199
- package/css/fci.min.css +1 -1
- package/css/styles.css +392 -74
- package/css/styles.min.css +1 -1
- package/index.scss +53 -0
- package/package.json +1 -1
- package/scss/_utilities.scss +31 -3
- package/scss/components/_accordion.scss +23 -25
- package/scss/components/_card.scss +37 -29
- package/scss/components/_descriptions.scss +61 -16
- package/scss/components/_input.scss +72 -19
- package/scss/components/_list.scss +1 -2
- package/scss/components/_toolbar.scss +0 -1
- package/scss/themes/fci/_tokens.scss +12 -2
- package/scss/themes/fci/components/_accordion.scss +84 -135
- package/scss/themes/fci/components/_badge.scss +13 -14
- package/scss/themes/fci/components/_button.scss +57 -29
- package/scss/themes/fci/components/_card.scss +53 -41
- package/scss/themes/fci/components/_checkbox.scss +49 -8
- package/scss/themes/fci/components/_chip.scss +95 -29
- package/scss/themes/fci/components/_descriptions.scss +53 -0
- package/scss/themes/fci/components/_index.scss +1 -0
- package/scss/themes/fci/components/_input.scss +40 -14
- package/scss/themes/fci/components/_list.scss +0 -4
- package/scss/themes/fci/components/_radio.scss +47 -5
- package/scss/themes/fci/components/_switch.scss +40 -8
package/css/styles.css
CHANGED
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
overflow: hidden;
|
|
30
30
|
display: flex;
|
|
31
31
|
flex-direction: column;
|
|
32
|
-
gap: var(--us-toolbar-content-gap);
|
|
33
32
|
}
|
|
34
33
|
.us-toolbar__title {
|
|
35
34
|
font-size: var(--us-toolbar-title-font-size);
|
|
@@ -738,6 +737,9 @@
|
|
|
738
737
|
opacity: 0.75;
|
|
739
738
|
pointer-events: none;
|
|
740
739
|
}
|
|
740
|
+
.us-input--read-only {
|
|
741
|
+
pointer-events: none;
|
|
742
|
+
}
|
|
741
743
|
.us-input--clearable .us-input__clearable {
|
|
742
744
|
transform: scale(0);
|
|
743
745
|
transition: all 0.2s ease-in-out;
|
|
@@ -745,10 +747,41 @@
|
|
|
745
747
|
.us-input--clearable:hover .us-input__clearable {
|
|
746
748
|
transform: scale(0.75);
|
|
747
749
|
}
|
|
748
|
-
.us-
|
|
750
|
+
.us-input-group {
|
|
751
|
+
display: flex;
|
|
752
|
+
align-items: center;
|
|
753
|
+
}
|
|
754
|
+
.us-input-group .us-input {
|
|
755
|
+
border-radius: 0px;
|
|
756
|
+
}
|
|
757
|
+
.us-input-group .us-input:first-of-type {
|
|
758
|
+
border-top-left-radius: var(--us-input-border-radius);
|
|
759
|
+
border-bottom-left-radius: var(--us-input-border-radius);
|
|
760
|
+
}
|
|
761
|
+
.us-input-group .us-input:last-of-type {
|
|
762
|
+
border-top-right-radius: var(--us-input-border-radius);
|
|
763
|
+
border-bottom-right-radius: var(--us-input-border-radius);
|
|
764
|
+
}
|
|
765
|
+
.us-input__icon {
|
|
766
|
+
padding: 0;
|
|
749
767
|
display: flex;
|
|
750
768
|
justify-content: center;
|
|
751
769
|
align-items: center;
|
|
770
|
+
border: none;
|
|
771
|
+
outline: none;
|
|
772
|
+
background-color: transparent;
|
|
773
|
+
}
|
|
774
|
+
.us-input__icon--opacity {
|
|
775
|
+
opacity: 0;
|
|
776
|
+
}
|
|
777
|
+
.us-input__icon--pointer {
|
|
778
|
+
cursor: pointer;
|
|
779
|
+
}
|
|
780
|
+
.us-input:hover .us-input__icon--opacity-hoverable {
|
|
781
|
+
opacity: 0.5;
|
|
782
|
+
}
|
|
783
|
+
.us-input:hover .us-input__icon--opacity-hoverable:hover {
|
|
784
|
+
opacity: 1;
|
|
752
785
|
}
|
|
753
786
|
.us-input__content {
|
|
754
787
|
flex: 1;
|
|
@@ -757,6 +790,23 @@
|
|
|
757
790
|
align-items: center;
|
|
758
791
|
z-index: 1;
|
|
759
792
|
}
|
|
793
|
+
.us-input__content--chips {
|
|
794
|
+
padding-block: var(--us-input-padding-y);
|
|
795
|
+
padding-inline: var(--us-input-padding-x);
|
|
796
|
+
flex-grow: 1;
|
|
797
|
+
display: flex;
|
|
798
|
+
flex-wrap: wrap;
|
|
799
|
+
gap: 0.25rem;
|
|
800
|
+
}
|
|
801
|
+
.us-input__content--chips input {
|
|
802
|
+
flex: 1;
|
|
803
|
+
height: 24px;
|
|
804
|
+
border: none;
|
|
805
|
+
outline: none;
|
|
806
|
+
color: inherit;
|
|
807
|
+
background: inherit;
|
|
808
|
+
min-width: 0;
|
|
809
|
+
}
|
|
760
810
|
.us-input__field {
|
|
761
811
|
flex: 1;
|
|
762
812
|
width: 100%;
|
|
@@ -779,7 +829,7 @@
|
|
|
779
829
|
.us-input__field::placeholder {
|
|
780
830
|
color: var(--us-input-placeholder-color);
|
|
781
831
|
}
|
|
782
|
-
.us-input__search {
|
|
832
|
+
.us-input__search, .us-input__placeholder {
|
|
783
833
|
flex: 1;
|
|
784
834
|
width: 100%;
|
|
785
835
|
padding-block: var(--us-input-padding-y);
|
|
@@ -793,27 +843,18 @@
|
|
|
793
843
|
white-space: nowrap;
|
|
794
844
|
display: block;
|
|
795
845
|
}
|
|
796
|
-
.us-
|
|
797
|
-
|
|
798
|
-
padding-inline: var(--us-input-padding-x);
|
|
799
|
-
flex-grow: 1;
|
|
800
|
-
display: flex;
|
|
801
|
-
flex-wrap: wrap;
|
|
802
|
-
gap: 0.25rem;
|
|
803
|
-
}
|
|
804
|
-
.us-input__chips input {
|
|
805
|
-
flex: 1;
|
|
806
|
-
height: 24px;
|
|
807
|
-
border: none;
|
|
808
|
-
outline: none;
|
|
809
|
-
color: inherit;
|
|
810
|
-
background: inherit;
|
|
811
|
-
min-width: 0;
|
|
846
|
+
.us-input__placeholder {
|
|
847
|
+
opacity: 0.6;
|
|
812
848
|
}
|
|
813
849
|
.us-input__start-content, .us-input__end-content {
|
|
814
850
|
flex-shrink: 0;
|
|
851
|
+
height: 100%;
|
|
815
852
|
display: flex;
|
|
816
853
|
align-items: center;
|
|
854
|
+
font-size: var(--us-input-font-size);
|
|
855
|
+
font-family: var(--us-input-font-family);
|
|
856
|
+
line-height: var(--us-input-line-height);
|
|
857
|
+
gap: var(--us-input-content-gap);
|
|
817
858
|
}
|
|
818
859
|
.us-input__start-content .us-icon, .us-input__end-content .us-icon {
|
|
819
860
|
font-size: var(--us-input-icon-size);
|
|
@@ -1092,31 +1133,21 @@
|
|
|
1092
1133
|
position: relative;
|
|
1093
1134
|
border-radius: var(--us-accordion-border-radius);
|
|
1094
1135
|
z-index: 0;
|
|
1136
|
+
}
|
|
1137
|
+
.us-accordion:not(.us-accordion--splitted) {
|
|
1095
1138
|
overflow: hidden;
|
|
1096
1139
|
background-color: white;
|
|
1097
1140
|
}
|
|
1098
|
-
.us-accordion--bordered:not(.us-accordion--splitted) {
|
|
1099
|
-
border: var(--us-accordion-border-width) var(--us-accordion-border-style) var(--us-accordion-border-color);
|
|
1100
|
-
}
|
|
1101
|
-
.us-accordion--shadow:not(.us-accordion--splitted) {
|
|
1102
|
-
filter: drop-shadow(rgba(141, 141, 141, 0.15) 0.5px 1px 1px) drop-shadow(rgba(141, 141, 141, 0.15) 1px 2px 2px) drop-shadow(rgba(141, 141, 141, 0.15) 2px 4px 4px) drop-shadow(rgba(141, 141, 141, 0.15) 4px 8px 8px) drop-shadow(rgba(141, 141, 141, 0.15) 8px 16px 16px);
|
|
1103
|
-
}
|
|
1104
1141
|
.us-accordion--splitted {
|
|
1105
1142
|
display: grid;
|
|
1106
1143
|
gap: var(--us-accordion-splitted-gap);
|
|
1107
1144
|
}
|
|
1108
1145
|
.us-accordion--splitted .us-accordion-item {
|
|
1109
|
-
border-radius: var(--us-accordion-border-radius);
|
|
1110
1146
|
overflow: hidden;
|
|
1111
1147
|
}
|
|
1112
|
-
.us-accordion--bordered.us-accordion--splitted .us-accordion-item {
|
|
1113
|
-
border: var(--us-accordion-border-width) var(--us-accordion-border-style) var(--us-accordion-border-color);
|
|
1114
|
-
}
|
|
1115
|
-
.us-accordion--shadow.us-accordion--splitted .us-accordion-item {
|
|
1116
|
-
filter: drop-shadow(rgba(141, 141, 141, 0.15) 0.5px 1px 1px) drop-shadow(rgba(141, 141, 141, 0.15) 1px 2px 2px) drop-shadow(rgba(141, 141, 141, 0.15) 2px 4px 4px) drop-shadow(rgba(141, 141, 141, 0.15) 4px 8px 8px) drop-shadow(rgba(141, 141, 141, 0.15) 8px 16px 16px);
|
|
1117
|
-
}
|
|
1118
1148
|
.us-accordion-item {
|
|
1119
|
-
|
|
1149
|
+
position: relative;
|
|
1150
|
+
border-bottom: var(--us-accordion-item-border);
|
|
1120
1151
|
}
|
|
1121
1152
|
.us-accordion-item:last-child {
|
|
1122
1153
|
border-bottom: none;
|
|
@@ -1148,7 +1179,19 @@
|
|
|
1148
1179
|
flex-grow: 1;
|
|
1149
1180
|
display: flex;
|
|
1150
1181
|
flex-direction: column;
|
|
1151
|
-
|
|
1182
|
+
}
|
|
1183
|
+
.us-accordion-header--centered .us-accordion-header__start-content, .us-accordion-header--centered .us-accordion-header__end-content {
|
|
1184
|
+
position: absolute;
|
|
1185
|
+
}
|
|
1186
|
+
.us-accordion-header--centered .us-accordion-header__start-content {
|
|
1187
|
+
left: var(--us-accordion-header-padding-x);
|
|
1188
|
+
}
|
|
1189
|
+
.us-accordion-header--centered .us-accordion-header__end-content {
|
|
1190
|
+
right: var(--us-accordion-header-padding-x);
|
|
1191
|
+
}
|
|
1192
|
+
.us-accordion-header--centered .us-accordion-header__content {
|
|
1193
|
+
align-items: center;
|
|
1194
|
+
text-align: center;
|
|
1152
1195
|
}
|
|
1153
1196
|
.us-accordion-header__title {
|
|
1154
1197
|
font-size: var(--us-accordion-header-title-font-size);
|
|
@@ -1224,8 +1267,7 @@
|
|
|
1224
1267
|
}
|
|
1225
1268
|
.us-list-item--disabled {
|
|
1226
1269
|
opacity: 0.6;
|
|
1227
|
-
|
|
1228
|
-
user-select: none;
|
|
1270
|
+
pointer-events: none;
|
|
1229
1271
|
}
|
|
1230
1272
|
.us-list-item__start-content, .us-list-item__end-content {
|
|
1231
1273
|
flex-shrink: 0;
|
|
@@ -1558,8 +1600,6 @@
|
|
|
1558
1600
|
overflow: hidden;
|
|
1559
1601
|
-webkit-tap-highlight-color: transparent;
|
|
1560
1602
|
background-color: white;
|
|
1561
|
-
}
|
|
1562
|
-
.us-card__content {
|
|
1563
1603
|
padding-block: var(--us-card-padding-y);
|
|
1564
1604
|
padding-inline: var(--us-card-padding-x);
|
|
1565
1605
|
display: flex;
|
|
@@ -1607,6 +1647,7 @@
|
|
|
1607
1647
|
overflow: hidden;
|
|
1608
1648
|
display: flex;
|
|
1609
1649
|
flex-direction: column;
|
|
1650
|
+
justify-content: center;
|
|
1610
1651
|
}
|
|
1611
1652
|
.us-card-header--centered .us-card-header__start-content, .us-card-header--centered .us-card-header__end-content {
|
|
1612
1653
|
position: absolute;
|
|
@@ -1662,6 +1703,7 @@
|
|
|
1662
1703
|
color: var(--us-card-header-subtitle-color);
|
|
1663
1704
|
}
|
|
1664
1705
|
.us-card-body {
|
|
1706
|
+
position: relative;
|
|
1665
1707
|
padding-block: var(--us-card-body-padding-y);
|
|
1666
1708
|
padding-inline: var(--us-card-body-padding-x);
|
|
1667
1709
|
font-size: var(--us-card-body-font-size);
|
|
@@ -1711,53 +1753,93 @@
|
|
|
1711
1753
|
height: 100%;
|
|
1712
1754
|
object-fit: cover;
|
|
1713
1755
|
}
|
|
1714
|
-
.us-card
|
|
1715
|
-
|
|
1756
|
+
.us-card--divider .us-card-body {
|
|
1757
|
+
margin-bottom: var(--us-card-padding-y);
|
|
1758
|
+
margin-top: var(--us-card-padding-y);
|
|
1759
|
+
}
|
|
1760
|
+
.us-card--divider .us-card-body::before {
|
|
1761
|
+
content: "";
|
|
1762
|
+
position: absolute;
|
|
1763
|
+
left: 0;
|
|
1764
|
+
right: 0;
|
|
1765
|
+
top: 0;
|
|
1766
|
+
border-top: 1px solid var(--us-card-border-color);
|
|
1716
1767
|
}
|
|
1717
|
-
.us-card-
|
|
1768
|
+
.us-card--divider .us-card-body::after {
|
|
1718
1769
|
content: "";
|
|
1719
1770
|
position: absolute;
|
|
1720
|
-
left:
|
|
1721
|
-
right:
|
|
1771
|
+
left: 0;
|
|
1772
|
+
right: 0;
|
|
1722
1773
|
bottom: 0;
|
|
1723
1774
|
border-bottom: 1px solid var(--us-card-border-color);
|
|
1724
1775
|
}
|
|
1725
|
-
.us-card-
|
|
1726
|
-
|
|
1776
|
+
.us-card--divider > .us-card-body:first-child, .us-card--divider :not([hidden]):first-child .us-card-body {
|
|
1777
|
+
margin-top: 0;
|
|
1727
1778
|
}
|
|
1728
|
-
.us-card-
|
|
1729
|
-
|
|
1730
|
-
position: absolute;
|
|
1731
|
-
left: calc(var(--us-card-padding-x) * -1);
|
|
1732
|
-
right: calc(var(--us-card-padding-x) * -1);
|
|
1733
|
-
top: 0;
|
|
1734
|
-
border-top: 1px solid var(--us-card-border-color);
|
|
1779
|
+
.us-card--divider > .us-card-body:first-child::before, .us-card--divider :not([hidden]):first-child .us-card-body::before {
|
|
1780
|
+
border-top: none;
|
|
1735
1781
|
}
|
|
1736
|
-
.us-card-
|
|
1737
|
-
|
|
1782
|
+
.us-card--divider > .us-card-body:last-child, .us-card--divider :not([hidden]):last-child .us-card-body {
|
|
1783
|
+
margin-bottom: 0;
|
|
1738
1784
|
}
|
|
1739
|
-
.us-card-
|
|
1785
|
+
.us-card--divider > .us-card-body:last-child::after, .us-card--divider :not([hidden]):last-child .us-card-body::after {
|
|
1740
1786
|
border-bottom: none;
|
|
1741
1787
|
}
|
|
1742
|
-
|
|
1743
|
-
|
|
1788
|
+
|
|
1789
|
+
.us-descriptions {
|
|
1790
|
+
display: grid;
|
|
1791
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1792
|
+
row-gap: var(--us-descriptions-gap-y);
|
|
1793
|
+
column-gap: var(--us-descriptions-gap-x);
|
|
1744
1794
|
}
|
|
1745
1795
|
|
|
1746
|
-
.us-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
text-overflow: ellipsis;
|
|
1751
|
-
white-space: nowrap;
|
|
1752
|
-
display: block;
|
|
1796
|
+
.us-description {
|
|
1797
|
+
position: relative;
|
|
1798
|
+
padding-block: var(--us-description-padding-y);
|
|
1799
|
+
padding-inline: var(--us-description-padding-x);
|
|
1753
1800
|
}
|
|
1754
|
-
.us-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1801
|
+
.us-description__container {
|
|
1802
|
+
display: grid;
|
|
1803
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1804
|
+
row-gap: var(--us-description-gap-y);
|
|
1805
|
+
column-gap: var(--us-description-gap-x);
|
|
1806
|
+
}
|
|
1807
|
+
.us-description-value {
|
|
1808
|
+
display: flex;
|
|
1809
|
+
align-items: center;
|
|
1810
|
+
}
|
|
1811
|
+
.us-description-value__start-content, .us-description-value__end-content {
|
|
1812
|
+
flex-shrink: 0;
|
|
1813
|
+
}
|
|
1814
|
+
.us-description-value__content {
|
|
1815
|
+
flex-grow: 1;
|
|
1816
|
+
}
|
|
1817
|
+
.us-descriptions--row .us-description-label {
|
|
1818
|
+
grid-column: span 6/span 6;
|
|
1819
|
+
}
|
|
1820
|
+
.us-descriptions--row .us-description-value {
|
|
1821
|
+
grid-column: span 6/span 6;
|
|
1822
|
+
}
|
|
1823
|
+
.us-descriptions--col .us-description-label, .us-descriptions--col .us-description-value {
|
|
1824
|
+
grid-column: span 12/span 12;
|
|
1825
|
+
}
|
|
1826
|
+
.us-description-label {
|
|
1827
|
+
font-size: var(--us-description-label-font-size);
|
|
1828
|
+
font-weight: var(--us-description-label-font-weight);
|
|
1829
|
+
color: var(--us-description-label-color);
|
|
1830
|
+
opacity: var(--us-description-label-opacity);
|
|
1831
|
+
}
|
|
1832
|
+
.us-description-text {
|
|
1833
|
+
display: inline;
|
|
1834
|
+
font-size: var(--us-description-text-font-size);
|
|
1835
|
+
font-weight: var(--us-description-text-font-weight);
|
|
1836
|
+
color: var(--us-description-text-color);
|
|
1837
|
+
opacity: var(--us-description-text-opacity);
|
|
1838
|
+
}
|
|
1839
|
+
.us-description-empty {
|
|
1840
|
+
opacity: 0.75;
|
|
1841
|
+
user-select: none;
|
|
1842
|
+
cursor: default;
|
|
1761
1843
|
}
|
|
1762
1844
|
|
|
1763
1845
|
.us-result {
|
|
@@ -2108,6 +2190,42 @@
|
|
|
2108
2190
|
align-items: baseline;
|
|
2109
2191
|
}
|
|
2110
2192
|
|
|
2193
|
+
.us-fs-xs {
|
|
2194
|
+
font-size: var(--us-fs-xs);
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
.us-fs-sm {
|
|
2198
|
+
font-size: var(--us-fs-sm);
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
.us-fs-md {
|
|
2202
|
+
font-size: var(--us-fs-md);
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
.us-fs-lg {
|
|
2206
|
+
font-size: var(--us-fs-lg);
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
.us-fs-xl {
|
|
2210
|
+
font-size: var(--us-fs-xl);
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
.us-fs-2xl {
|
|
2214
|
+
font-size: var(--us-fs-2xl);
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2217
|
+
.us-fs-3xl {
|
|
2218
|
+
font-size: var(--us-fs-3xl);
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
.us-fs-4xl {
|
|
2222
|
+
font-size: var(--us-fs-4xl);
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
.us-fs-5xl {
|
|
2226
|
+
font-size: var(--us-fs-5xl);
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2111
2229
|
.us-gap-0 {
|
|
2112
2230
|
gap: 0;
|
|
2113
2231
|
}
|
|
@@ -2313,6 +2431,33 @@
|
|
|
2313
2431
|
.xs\:us-items-baseline {
|
|
2314
2432
|
align-items: baseline;
|
|
2315
2433
|
}
|
|
2434
|
+
.xs\:us-fs-xs {
|
|
2435
|
+
font-size: var(--us-fs-xs);
|
|
2436
|
+
}
|
|
2437
|
+
.xs\:us-fs-sm {
|
|
2438
|
+
font-size: var(--us-fs-sm);
|
|
2439
|
+
}
|
|
2440
|
+
.xs\:us-fs-md {
|
|
2441
|
+
font-size: var(--us-fs-md);
|
|
2442
|
+
}
|
|
2443
|
+
.xs\:us-fs-lg {
|
|
2444
|
+
font-size: var(--us-fs-lg);
|
|
2445
|
+
}
|
|
2446
|
+
.xs\:us-fs-xl {
|
|
2447
|
+
font-size: var(--us-fs-xl);
|
|
2448
|
+
}
|
|
2449
|
+
.xs\:us-fs-2xl {
|
|
2450
|
+
font-size: var(--us-fs-2xl);
|
|
2451
|
+
}
|
|
2452
|
+
.xs\:us-fs-3xl {
|
|
2453
|
+
font-size: var(--us-fs-3xl);
|
|
2454
|
+
}
|
|
2455
|
+
.xs\:us-fs-4xl {
|
|
2456
|
+
font-size: var(--us-fs-4xl);
|
|
2457
|
+
}
|
|
2458
|
+
.xs\:us-fs-5xl {
|
|
2459
|
+
font-size: var(--us-fs-5xl);
|
|
2460
|
+
}
|
|
2316
2461
|
.xs\:us-gap-0 {
|
|
2317
2462
|
gap: 0;
|
|
2318
2463
|
}
|
|
@@ -2395,7 +2540,7 @@
|
|
|
2395
2540
|
row-gap: 2rem;
|
|
2396
2541
|
}
|
|
2397
2542
|
}
|
|
2398
|
-
@media screen and (min-width:
|
|
2543
|
+
@media screen and (min-width: 640px) {
|
|
2399
2544
|
.sm\:us-h-full {
|
|
2400
2545
|
height: 100%;
|
|
2401
2546
|
}
|
|
@@ -2492,6 +2637,33 @@
|
|
|
2492
2637
|
.sm\:us-items-baseline {
|
|
2493
2638
|
align-items: baseline;
|
|
2494
2639
|
}
|
|
2640
|
+
.sm\:us-fs-xs {
|
|
2641
|
+
font-size: var(--us-fs-xs);
|
|
2642
|
+
}
|
|
2643
|
+
.sm\:us-fs-sm {
|
|
2644
|
+
font-size: var(--us-fs-sm);
|
|
2645
|
+
}
|
|
2646
|
+
.sm\:us-fs-md {
|
|
2647
|
+
font-size: var(--us-fs-md);
|
|
2648
|
+
}
|
|
2649
|
+
.sm\:us-fs-lg {
|
|
2650
|
+
font-size: var(--us-fs-lg);
|
|
2651
|
+
}
|
|
2652
|
+
.sm\:us-fs-xl {
|
|
2653
|
+
font-size: var(--us-fs-xl);
|
|
2654
|
+
}
|
|
2655
|
+
.sm\:us-fs-2xl {
|
|
2656
|
+
font-size: var(--us-fs-2xl);
|
|
2657
|
+
}
|
|
2658
|
+
.sm\:us-fs-3xl {
|
|
2659
|
+
font-size: var(--us-fs-3xl);
|
|
2660
|
+
}
|
|
2661
|
+
.sm\:us-fs-4xl {
|
|
2662
|
+
font-size: var(--us-fs-4xl);
|
|
2663
|
+
}
|
|
2664
|
+
.sm\:us-fs-5xl {
|
|
2665
|
+
font-size: var(--us-fs-5xl);
|
|
2666
|
+
}
|
|
2495
2667
|
.sm\:us-gap-0 {
|
|
2496
2668
|
gap: 0;
|
|
2497
2669
|
}
|
|
@@ -2671,6 +2843,33 @@
|
|
|
2671
2843
|
.md\:us-items-baseline {
|
|
2672
2844
|
align-items: baseline;
|
|
2673
2845
|
}
|
|
2846
|
+
.md\:us-fs-xs {
|
|
2847
|
+
font-size: var(--us-fs-xs);
|
|
2848
|
+
}
|
|
2849
|
+
.md\:us-fs-sm {
|
|
2850
|
+
font-size: var(--us-fs-sm);
|
|
2851
|
+
}
|
|
2852
|
+
.md\:us-fs-md {
|
|
2853
|
+
font-size: var(--us-fs-md);
|
|
2854
|
+
}
|
|
2855
|
+
.md\:us-fs-lg {
|
|
2856
|
+
font-size: var(--us-fs-lg);
|
|
2857
|
+
}
|
|
2858
|
+
.md\:us-fs-xl {
|
|
2859
|
+
font-size: var(--us-fs-xl);
|
|
2860
|
+
}
|
|
2861
|
+
.md\:us-fs-2xl {
|
|
2862
|
+
font-size: var(--us-fs-2xl);
|
|
2863
|
+
}
|
|
2864
|
+
.md\:us-fs-3xl {
|
|
2865
|
+
font-size: var(--us-fs-3xl);
|
|
2866
|
+
}
|
|
2867
|
+
.md\:us-fs-4xl {
|
|
2868
|
+
font-size: var(--us-fs-4xl);
|
|
2869
|
+
}
|
|
2870
|
+
.md\:us-fs-5xl {
|
|
2871
|
+
font-size: var(--us-fs-5xl);
|
|
2872
|
+
}
|
|
2674
2873
|
.md\:us-gap-0 {
|
|
2675
2874
|
gap: 0;
|
|
2676
2875
|
}
|
|
@@ -2753,7 +2952,7 @@
|
|
|
2753
2952
|
row-gap: 2rem;
|
|
2754
2953
|
}
|
|
2755
2954
|
}
|
|
2756
|
-
@media screen and (min-width:
|
|
2955
|
+
@media screen and (min-width: 1024px) {
|
|
2757
2956
|
.lg\:us-h-full {
|
|
2758
2957
|
height: 100%;
|
|
2759
2958
|
}
|
|
@@ -2850,6 +3049,33 @@
|
|
|
2850
3049
|
.lg\:us-items-baseline {
|
|
2851
3050
|
align-items: baseline;
|
|
2852
3051
|
}
|
|
3052
|
+
.lg\:us-fs-xs {
|
|
3053
|
+
font-size: var(--us-fs-xs);
|
|
3054
|
+
}
|
|
3055
|
+
.lg\:us-fs-sm {
|
|
3056
|
+
font-size: var(--us-fs-sm);
|
|
3057
|
+
}
|
|
3058
|
+
.lg\:us-fs-md {
|
|
3059
|
+
font-size: var(--us-fs-md);
|
|
3060
|
+
}
|
|
3061
|
+
.lg\:us-fs-lg {
|
|
3062
|
+
font-size: var(--us-fs-lg);
|
|
3063
|
+
}
|
|
3064
|
+
.lg\:us-fs-xl {
|
|
3065
|
+
font-size: var(--us-fs-xl);
|
|
3066
|
+
}
|
|
3067
|
+
.lg\:us-fs-2xl {
|
|
3068
|
+
font-size: var(--us-fs-2xl);
|
|
3069
|
+
}
|
|
3070
|
+
.lg\:us-fs-3xl {
|
|
3071
|
+
font-size: var(--us-fs-3xl);
|
|
3072
|
+
}
|
|
3073
|
+
.lg\:us-fs-4xl {
|
|
3074
|
+
font-size: var(--us-fs-4xl);
|
|
3075
|
+
}
|
|
3076
|
+
.lg\:us-fs-5xl {
|
|
3077
|
+
font-size: var(--us-fs-5xl);
|
|
3078
|
+
}
|
|
2853
3079
|
.lg\:us-gap-0 {
|
|
2854
3080
|
gap: 0;
|
|
2855
3081
|
}
|
|
@@ -2932,7 +3158,7 @@
|
|
|
2932
3158
|
row-gap: 2rem;
|
|
2933
3159
|
}
|
|
2934
3160
|
}
|
|
2935
|
-
@media screen and (min-width:
|
|
3161
|
+
@media screen and (min-width: 1280px) {
|
|
2936
3162
|
.xl\:us-h-full {
|
|
2937
3163
|
height: 100%;
|
|
2938
3164
|
}
|
|
@@ -3029,6 +3255,33 @@
|
|
|
3029
3255
|
.xl\:us-items-baseline {
|
|
3030
3256
|
align-items: baseline;
|
|
3031
3257
|
}
|
|
3258
|
+
.xl\:us-fs-xs {
|
|
3259
|
+
font-size: var(--us-fs-xs);
|
|
3260
|
+
}
|
|
3261
|
+
.xl\:us-fs-sm {
|
|
3262
|
+
font-size: var(--us-fs-sm);
|
|
3263
|
+
}
|
|
3264
|
+
.xl\:us-fs-md {
|
|
3265
|
+
font-size: var(--us-fs-md);
|
|
3266
|
+
}
|
|
3267
|
+
.xl\:us-fs-lg {
|
|
3268
|
+
font-size: var(--us-fs-lg);
|
|
3269
|
+
}
|
|
3270
|
+
.xl\:us-fs-xl {
|
|
3271
|
+
font-size: var(--us-fs-xl);
|
|
3272
|
+
}
|
|
3273
|
+
.xl\:us-fs-2xl {
|
|
3274
|
+
font-size: var(--us-fs-2xl);
|
|
3275
|
+
}
|
|
3276
|
+
.xl\:us-fs-3xl {
|
|
3277
|
+
font-size: var(--us-fs-3xl);
|
|
3278
|
+
}
|
|
3279
|
+
.xl\:us-fs-4xl {
|
|
3280
|
+
font-size: var(--us-fs-4xl);
|
|
3281
|
+
}
|
|
3282
|
+
.xl\:us-fs-5xl {
|
|
3283
|
+
font-size: var(--us-fs-5xl);
|
|
3284
|
+
}
|
|
3032
3285
|
.xl\:us-gap-0 {
|
|
3033
3286
|
gap: 0;
|
|
3034
3287
|
}
|
|
@@ -3339,6 +3592,7 @@
|
|
|
3339
3592
|
border-color: var(--us-outline-border-color);
|
|
3340
3593
|
opacity: var(--us-outline-opacity);
|
|
3341
3594
|
pointer-events: none;
|
|
3595
|
+
z-index: var(--us-outline-z-index);
|
|
3342
3596
|
}
|
|
3343
3597
|
|
|
3344
3598
|
:not([hidden]):hover > .us-outline {
|
|
@@ -3382,6 +3636,17 @@
|
|
|
3382
3636
|
border-bottom: var(--us-outline-border-width) solid var(--us-outline-border-color);
|
|
3383
3637
|
}
|
|
3384
3638
|
|
|
3639
|
+
.us-grid {
|
|
3640
|
+
display: grid;
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
.us-icon.jodit-icon {
|
|
3644
|
+
width: 1em !important;
|
|
3645
|
+
height: 1em !important;
|
|
3646
|
+
fill: none !important;
|
|
3647
|
+
stroke: currentColor !important;
|
|
3648
|
+
}
|
|
3649
|
+
|
|
3385
3650
|
/* Estilos CSS aquí */
|
|
3386
3651
|
.slider-container {
|
|
3387
3652
|
width: 300px;
|
|
@@ -3398,4 +3663,57 @@
|
|
|
3398
3663
|
border-radius: 50%;
|
|
3399
3664
|
position: absolute;
|
|
3400
3665
|
cursor: pointer;
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3668
|
+
.jodit-popup {
|
|
3669
|
+
border-radius: 6px;
|
|
3670
|
+
overflow: hidden;
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
.jodit-autocomplete {
|
|
3674
|
+
padding: 0.5rem 0.25rem;
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
.jodit-autocomplete-label {
|
|
3678
|
+
color: rgb(112, 112, 112);
|
|
3679
|
+
align-items: center;
|
|
3680
|
+
cursor: default;
|
|
3681
|
+
display: flex;
|
|
3682
|
+
min-width: 6em;
|
|
3683
|
+
font-size: 12px;
|
|
3684
|
+
font-weight: 500;
|
|
3685
|
+
min-height: 28px;
|
|
3686
|
+
padding: 0.25rem 0.5rem;
|
|
3687
|
+
border-bottom: 1px solid #ddd;
|
|
3688
|
+
margin-bottom: 0.5rem;
|
|
3689
|
+
background-color: white;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
.jodit-autocomplete-item {
|
|
3693
|
+
align-items: center;
|
|
3694
|
+
cursor: default;
|
|
3695
|
+
display: flex;
|
|
3696
|
+
min-width: 6em;
|
|
3697
|
+
min-height: 32px;
|
|
3698
|
+
padding: 0.25rem 0.5rem;
|
|
3699
|
+
background-color: white;
|
|
3700
|
+
border-radius: 6px;
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
.jodit-autocomplete-item:hover {
|
|
3704
|
+
background-color: #ecebe9;
|
|
3705
|
+
color: #4c4c4c;
|
|
3706
|
+
cursor: pointer;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.jodit-autocomplete-item_active_true,
|
|
3710
|
+
.jodit-autocomplete-item_active_true:hover {
|
|
3711
|
+
background-color: var(--us-primary-color);
|
|
3712
|
+
color: #fff;
|
|
3713
|
+
}
|
|
3714
|
+
|
|
3715
|
+
.jodit-autocomplete-item_active_false {
|
|
3716
|
+
background-color: #fff;
|
|
3717
|
+
color: #4c4c4c;
|
|
3718
|
+
cursor: pointer;
|
|
3401
3719
|
}
|