doom-design-system 0.4.13 → 0.4.14
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/components/Chart/Chart.module.css +3 -3
- package/dist/components/Checkbox/Checkbox.module.css +4 -1
- package/dist/components/Input/Input.module.css +4 -1
- package/dist/components/Select/Select.module.css +4 -1
- package/dist/components/Textarea/Textarea.module.css +4 -1
- package/package.json +1 -1
|
@@ -188,9 +188,9 @@
|
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
.legendDot {
|
|
191
|
-
width:
|
|
192
|
-
height:
|
|
193
|
-
border-radius: var(--radius
|
|
191
|
+
width: 16px;
|
|
192
|
+
height: 8px;
|
|
193
|
+
border-radius: var(--radius);
|
|
194
194
|
flex-shrink: 0;
|
|
195
195
|
border: var(--border-width) solid var(--border-strong);
|
|
196
196
|
}
|
|
@@ -17,12 +17,15 @@
|
|
|
17
17
|
height: 0;
|
|
18
18
|
margin: 0;
|
|
19
19
|
}
|
|
20
|
-
.checkboxInput:focus-visible + .checkboxDisplay:focus
|
|
20
|
+
.checkboxInput:focus-visible + .checkboxDisplay:focus-visible, .checkboxInput:focus-visible + .checkboxDisplay[aria-expanded=true] {
|
|
21
21
|
outline: none;
|
|
22
22
|
transform: translate(-2px, -2px);
|
|
23
23
|
box-shadow: 6px 6px 0px 0px var(--shadow-primary);
|
|
24
24
|
border-color: var(--primary);
|
|
25
25
|
}
|
|
26
|
+
.checkboxInput:focus-visible + .checkboxDisplay:focus {
|
|
27
|
+
outline: none;
|
|
28
|
+
}
|
|
26
29
|
.checkboxInput:focus-visible + .checkboxDisplay {
|
|
27
30
|
outline: 2px solid var(--primary);
|
|
28
31
|
}
|
|
@@ -24,12 +24,15 @@
|
|
|
24
24
|
transition: all 0.1s ease;
|
|
25
25
|
outline: none;
|
|
26
26
|
}
|
|
27
|
-
.input:focus
|
|
27
|
+
.input:focus-visible, .input[aria-expanded=true] {
|
|
28
28
|
outline: none;
|
|
29
29
|
transform: translate(-2px, -2px);
|
|
30
30
|
box-shadow: 6px 6px 0px 0px var(--shadow-primary);
|
|
31
31
|
border-color: var(--primary);
|
|
32
32
|
}
|
|
33
|
+
.input:focus {
|
|
34
|
+
outline: none;
|
|
35
|
+
}
|
|
33
36
|
.input::placeholder {
|
|
34
37
|
color: var(--muted);
|
|
35
38
|
}
|
|
@@ -29,12 +29,15 @@
|
|
|
29
29
|
transform: translate(-2px, -2px);
|
|
30
30
|
box-shadow: 6px 6px 0px 0px var(--shadow-base);
|
|
31
31
|
}
|
|
32
|
-
.trigger:focus
|
|
32
|
+
.trigger:focus-visible, .trigger[aria-expanded=true] {
|
|
33
33
|
outline: none;
|
|
34
34
|
transform: translate(-2px, -2px);
|
|
35
35
|
box-shadow: 6px 6px 0px 0px var(--shadow-primary);
|
|
36
36
|
border-color: var(--primary);
|
|
37
37
|
}
|
|
38
|
+
.trigger:focus {
|
|
39
|
+
outline: none;
|
|
40
|
+
}
|
|
38
41
|
|
|
39
42
|
.optionsList {
|
|
40
43
|
background: var(--card-bg);
|
|
@@ -20,12 +20,15 @@
|
|
|
20
20
|
transition: all 0.1s ease;
|
|
21
21
|
outline: none;
|
|
22
22
|
}
|
|
23
|
-
.textarea:focus
|
|
23
|
+
.textarea:focus-visible, .textarea[aria-expanded=true] {
|
|
24
24
|
outline: none;
|
|
25
25
|
transform: translate(-2px, -2px);
|
|
26
26
|
box-shadow: 6px 6px 0px 0px var(--shadow-primary);
|
|
27
27
|
border-color: var(--primary);
|
|
28
28
|
}
|
|
29
|
+
.textarea:focus {
|
|
30
|
+
outline: none;
|
|
31
|
+
}
|
|
29
32
|
.textarea::placeholder {
|
|
30
33
|
color: var(--muted);
|
|
31
34
|
}
|