@lundal/zed-solid 0.0.7 → 0.0.9
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 +8 -5
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
border: none;
|
|
21
21
|
}
|
|
22
22
|
.z-button {
|
|
23
|
-
height: 36px;
|
|
24
23
|
padding: 6px 24px;
|
|
25
24
|
border-radius: 6px;
|
|
26
25
|
cursor: pointer;
|
|
@@ -42,6 +41,7 @@
|
|
|
42
41
|
|
|
43
42
|
.z-button[aria-busy="true"] {
|
|
44
43
|
color: transparent;
|
|
44
|
+
position: relative;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.z-button[aria-busy="true"]::before {
|
|
@@ -53,7 +53,8 @@
|
|
|
53
53
|
border: 3px solid transparent;
|
|
54
54
|
border-top-color: var(--z-button-text);
|
|
55
55
|
animation: 0.5s linear infinite z-spin;
|
|
56
|
-
|
|
56
|
+
position: absolute;
|
|
57
|
+
inset: calc(50% - 12px);
|
|
57
58
|
}
|
|
58
59
|
|
|
59
60
|
.z-button--icon {
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
border-radius: 12px;
|
|
81
82
|
padding: 24px;
|
|
82
83
|
background: var(--z-foreground);
|
|
83
|
-
|
|
84
|
+
border: 1px solid var(--z-border);
|
|
84
85
|
}
|
|
85
86
|
.z-checkbox {
|
|
86
87
|
display: flex;
|
|
@@ -164,6 +165,8 @@
|
|
|
164
165
|
.z-dialog::backdrop {
|
|
165
166
|
transition: opacity 0.1s;
|
|
166
167
|
opacity: 0;
|
|
168
|
+
background: none;
|
|
169
|
+
backdrop-filter: blur(2px);
|
|
167
170
|
}
|
|
168
171
|
|
|
169
172
|
.z-dialog--open {
|
|
@@ -353,6 +356,7 @@ dialog:focus-visible {
|
|
|
353
356
|
color: var(--z-text-body);
|
|
354
357
|
|
|
355
358
|
font-family: "Inter", sans-serif;
|
|
359
|
+
font-feature-settings: "calt" 0;
|
|
356
360
|
font-size: 16px;
|
|
357
361
|
font-weight: 400;
|
|
358
362
|
}
|
|
@@ -593,8 +597,7 @@ dialog:focus-visible {
|
|
|
593
597
|
--z-button-tertiary-fill: transparent;
|
|
594
598
|
--z-button-tertiary-text: #e6e6e6;
|
|
595
599
|
--z-button-icon-fill: #2c2c35;
|
|
596
|
-
|
|
597
|
-
--z-input-border: #8f8f8f; /* Lc 40 */
|
|
600
|
+
--z-input-border: #79798a; /* Lc 30 */
|
|
598
601
|
--z-input-active-border: #6068ff; /* Lc 30 */
|
|
599
602
|
--z-input-active-fill: #7882ff; /* Lc 40 */
|
|
600
603
|
--z-input-error-border: #db3a32; /* Lc 30 */
|