urfu-ui-kit-vanilla 2.7.1 → 2.7.3
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/package.json +1 -1
- package/src/main-no-fonts.css +12 -0
- package/src/main.css +12 -0
package/package.json
CHANGED
package/src/main-no-fonts.css
CHANGED
|
@@ -1733,6 +1733,9 @@ button {
|
|
|
1733
1733
|
align-items: center;
|
|
1734
1734
|
column-gap: calc(10 * var(--u-unit));
|
|
1735
1735
|
}
|
|
1736
|
+
.u-switch:has(input:disabled) {
|
|
1737
|
+
cursor: default;
|
|
1738
|
+
}
|
|
1736
1739
|
.u-switch input {
|
|
1737
1740
|
display: none;
|
|
1738
1741
|
}
|
|
@@ -1817,6 +1820,9 @@ button {
|
|
|
1817
1820
|
align-items: center;
|
|
1818
1821
|
column-gap: calc(10 * var(--u-unit));
|
|
1819
1822
|
}
|
|
1823
|
+
.u-switch-gradient:has(input:disabled) {
|
|
1824
|
+
cursor: default;
|
|
1825
|
+
}
|
|
1820
1826
|
.u-switch-gradient input {
|
|
1821
1827
|
display: none;
|
|
1822
1828
|
}
|
|
@@ -1908,6 +1914,9 @@ button {
|
|
|
1908
1914
|
font-size: calc(14 * var(--u-unit));
|
|
1909
1915
|
line-height: calc(20 * var(--u-unit));
|
|
1910
1916
|
}
|
|
1917
|
+
.u-radio:has(input:disabled) {
|
|
1918
|
+
cursor: default;
|
|
1919
|
+
}
|
|
1911
1920
|
.u-radio input {
|
|
1912
1921
|
display: none;
|
|
1913
1922
|
}
|
|
@@ -1945,6 +1954,9 @@ button {
|
|
|
1945
1954
|
font-size: calc(14 * var(--u-unit));
|
|
1946
1955
|
line-height: calc(20 * var(--u-unit));
|
|
1947
1956
|
}
|
|
1957
|
+
.u-checkbox:has(input:disabled) {
|
|
1958
|
+
cursor: default;
|
|
1959
|
+
}
|
|
1948
1960
|
.u-checkbox input {
|
|
1949
1961
|
display: none;
|
|
1950
1962
|
}
|
package/src/main.css
CHANGED
|
@@ -1862,6 +1862,9 @@ button {
|
|
|
1862
1862
|
align-items: center;
|
|
1863
1863
|
column-gap: calc(10 * var(--u-unit));
|
|
1864
1864
|
}
|
|
1865
|
+
.u-switch:has(input:disabled) {
|
|
1866
|
+
cursor: default;
|
|
1867
|
+
}
|
|
1865
1868
|
.u-switch input {
|
|
1866
1869
|
display: none;
|
|
1867
1870
|
}
|
|
@@ -1946,6 +1949,9 @@ button {
|
|
|
1946
1949
|
align-items: center;
|
|
1947
1950
|
column-gap: calc(10 * var(--u-unit));
|
|
1948
1951
|
}
|
|
1952
|
+
.u-switch-gradient:has(input:disabled) {
|
|
1953
|
+
cursor: default;
|
|
1954
|
+
}
|
|
1949
1955
|
.u-switch-gradient input {
|
|
1950
1956
|
display: none;
|
|
1951
1957
|
}
|
|
@@ -2037,6 +2043,9 @@ button {
|
|
|
2037
2043
|
font-size: calc(14 * var(--u-unit));
|
|
2038
2044
|
line-height: calc(20 * var(--u-unit));
|
|
2039
2045
|
}
|
|
2046
|
+
.u-radio:has(input:disabled) {
|
|
2047
|
+
cursor: default;
|
|
2048
|
+
}
|
|
2040
2049
|
.u-radio input {
|
|
2041
2050
|
display: none;
|
|
2042
2051
|
}
|
|
@@ -2074,6 +2083,9 @@ button {
|
|
|
2074
2083
|
font-size: calc(14 * var(--u-unit));
|
|
2075
2084
|
line-height: calc(20 * var(--u-unit));
|
|
2076
2085
|
}
|
|
2086
|
+
.u-checkbox:has(input:disabled) {
|
|
2087
|
+
cursor: default;
|
|
2088
|
+
}
|
|
2077
2089
|
.u-checkbox input {
|
|
2078
2090
|
display: none;
|
|
2079
2091
|
}
|