@nordcode/ui 1.0.2 → 1.0.4
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/CHANGELOG.md +12 -0
- package/out/bundle.css +26 -40
- package/out/bundle_configless.css +6 -5
- package/out/colors.css +0 -5
- package/out/complete.css +179 -168
- package/out/complete_configless.css +159 -133
- package/package.json +2 -1
- package/src/styles/components/alerts.css +20 -0
- package/src/styles/components/bundle.css +4 -3
- package/src/styles/components/buttons.css +4 -0
- package/src/styles/config/config.css +253 -696
- package/src/styles/theme/colors.css +0 -13
- package/src/styles/utils/base.css +5 -0
- package/src/styles/utils/reset.css +11 -11
|
@@ -157,22 +157,9 @@
|
|
|
157
157
|
|
|
158
158
|
--color-status-danger-contrast: light-dark(var(--color-status-danger-contrast-light),
|
|
159
159
|
var(--color-status-danger-contrast-dark));
|
|
160
|
-
|
|
161
160
|
--shadow-color: light-dark(var(--shadow-color-light), var(--shadow-color-dark));
|
|
162
|
-
|
|
163
|
-
--shadow-inset: light-dark(var(--shadow-inset-light), var(--shadow-inset-dark));
|
|
164
|
-
|
|
165
|
-
--shadow-nearest: light-dark(var(--shadow-nearest-light), var(--shadow-nearest-dark));
|
|
166
|
-
|
|
167
|
-
--shadow-near: light-dark(var(--shadow-near-light), var(--shadow-near-dark));
|
|
168
|
-
|
|
169
|
-
--shadow-medium: light-dark(var(--shadow-medium-light), var(--shadow-medium-dark));
|
|
170
|
-
|
|
171
|
-
--shadow-far: light-dark(var(--shadow-far-light), var(--shadow-far-dark));
|
|
172
|
-
|
|
173
161
|
--triangle-down-url: light-dark(var(--triangle-down-url-light),
|
|
174
162
|
var(--triangle-down-url-dark));
|
|
175
|
-
|
|
176
163
|
--triangle-up-url: light-dark(var(--triangle-up-url-light), var(--triangle-up-url-dark));
|
|
177
164
|
}
|
|
178
165
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@layer reset {
|
|
2
|
+
|
|
2
3
|
*,
|
|
3
4
|
:after,
|
|
4
5
|
:before {
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
font-family: var(--font-family-default);
|
|
51
52
|
line-height: var(--line-height-base);
|
|
52
53
|
font-style: normal;
|
|
54
|
+
min-block-size: 100%;
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
/* Remove default margin in favour of better control in authored CSS */
|
|
@@ -88,17 +90,15 @@
|
|
|
88
90
|
place-items: center;
|
|
89
91
|
}
|
|
90
92
|
|
|
91
|
-
:where(
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
[tabindex]:not([tabindex*="-"])
|
|
101
|
-
) {
|
|
93
|
+
:where(a[href],
|
|
94
|
+
area,
|
|
95
|
+
button,
|
|
96
|
+
input,
|
|
97
|
+
label[for],
|
|
98
|
+
select,
|
|
99
|
+
summary,
|
|
100
|
+
textarea,
|
|
101
|
+
[tabindex]:not([tabindex*="-"])) {
|
|
102
102
|
cursor: pointer;
|
|
103
103
|
touch-action: manipulation;
|
|
104
104
|
-webkit-tap-highlight-color: transparent;
|