@fea-ui/styles 0.0.2 → 0.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/package.json +22 -20
- package/src/components/accordion.css +25 -25
- package/src/components/alert-dialog.css +25 -25
- package/src/components/alert.css +14 -14
- package/src/components/autocomplete.css +24 -24
- package/src/components/avatar.css +6 -6
- package/src/components/button-group.css +8 -8
- package/src/components/button.css +33 -33
- package/src/components/card.css +8 -8
- package/src/components/checkbox-group.css +1 -1
- package/src/components/checkbox.css +19 -19
- package/src/components/chip.css +10 -10
- package/src/components/collapsible.css +20 -20
- package/src/components/combobox.css +25 -25
- package/src/components/container.css +1 -1
- package/src/components/context-menu.css +14 -14
- package/src/components/dialog.css +25 -25
- package/src/components/drawer.css +41 -41
- package/src/components/field.css +3 -3
- package/src/components/fieldset.css +3 -3
- package/src/components/form.css +1 -1
- package/src/components/input.css +18 -18
- package/src/components/label.css +3 -3
- package/src/components/link.css +8 -8
- package/src/components/list.css +1 -1
- package/src/components/menu.css +26 -26
- package/src/components/meter.css +18 -18
- package/src/components/navbar.css +11 -11
- package/src/components/navigation-menu.css +22 -22
- package/src/components/number-field.css +23 -23
- package/src/components/popover.css +27 -27
- package/src/components/preview-card.css +8 -8
- package/src/components/progress.css +18 -18
- package/src/components/radio.css +18 -18
- package/src/components/scroll-area.css +1 -1
- package/src/components/select.css +36 -36
- package/src/components/separator.css +3 -3
- package/src/components/sidebar.css +28 -28
- package/src/components/slider.css +11 -11
- package/src/components/spinner.css +8 -8
- package/src/components/switch.css +19 -19
- package/src/components/table.css +10 -10
- package/src/components/tabs.css +26 -26
- package/src/components/text.css +1 -1
- package/src/components/toggle-button.css +4 -4
- package/src/components/tooltip.css +26 -26
- package/src/styles.css +96 -96
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
.sidebar {
|
|
2
|
-
|
|
2
|
+
@apply flex h-full w-full;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.sidebar__panel {
|
|
6
|
-
|
|
6
|
+
@apply fixed top-0 left-0 h-full w-64;
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
@apply flex flex-col;
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
@apply bg-surface text-surface-foreground shadow-lg;
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
@apply transition-transform duration-300 ease-in-out motion-reduce:transition-none;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.sidebar__header {
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
@apply flex items-center justify-between gap-3 p-4;
|
|
17
|
+
@apply border-b;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.sidebar__content {
|
|
21
|
-
|
|
21
|
+
@apply flex-1 p-4;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.sidebar__footer {
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
@apply border-t;
|
|
26
|
+
@apply p-4;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.sidebar__outlet {
|
|
30
|
-
|
|
30
|
+
@apply md:ml-64;
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
@apply transition-[margin] duration-300 ease-in-out motion-reduce:transition-none;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.sidebar__menu {
|
|
36
|
-
|
|
36
|
+
@apply flex flex-col gap-1;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.sidebar__menu-item {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
@apply cursor-pointer;
|
|
41
|
+
@apply flex items-center gap-3 rounded px-3 py-2;
|
|
42
|
+
@apply text-foreground hover-safe:bg-primary/10 hover-safe:text-primary;
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
@apply transition-[background-color,color] motion-reduce:transition-none;
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
&.active {
|
|
47
|
+
@apply bg-primary/20 text-primary;
|
|
48
|
+
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.sidebar__menu-label {
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
@apply py-2;
|
|
53
|
+
@apply text-muted-foreground text-sm font-medium;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
/**
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
*/
|
|
59
59
|
|
|
60
60
|
[data-open="false"] {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
.sidebar__panel {
|
|
62
|
+
@apply -translate-x-full;
|
|
63
|
+
}
|
|
64
64
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
.sidebar__outlet {
|
|
66
|
+
@apply ml-0;
|
|
67
|
+
}
|
|
68
68
|
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
.slider__control {
|
|
2
|
-
|
|
2
|
+
@apply flex w-full touch-none items-center py-3 select-none;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.slider__track {
|
|
6
|
-
|
|
6
|
+
@apply bg-secondary shadow-secondary relative h-1 w-full rounded shadow-inner select-none;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.slider__indicator {
|
|
10
|
-
|
|
10
|
+
@apply bg-primary absolute rounded select-none;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.slider__thumb {
|
|
14
|
-
|
|
14
|
+
@apply bg-primary outline-border size-4 rounded-full outline select-none;
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
@apply transition-[box-shadow,transform,outline] motion-reduce:transition-none;
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
&:focus-visible {
|
|
19
|
+
@apply status-focused;
|
|
20
|
+
}
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
&:active {
|
|
23
|
+
@apply scale-90;
|
|
24
|
+
}
|
|
25
25
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.spinner {
|
|
2
|
-
|
|
2
|
+
@apply animate-spin;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -7,32 +7,32 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
.spinner--sm {
|
|
10
|
-
|
|
10
|
+
@apply size-4;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.spinner--md {
|
|
14
|
-
|
|
14
|
+
@apply size-6;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.spinner--lg {
|
|
18
|
-
|
|
18
|
+
@apply size-8;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.spinner--xl {
|
|
22
|
-
|
|
22
|
+
@apply size-10;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* Variants
|
|
27
27
|
*/
|
|
28
28
|
.spinner--primary {
|
|
29
|
-
|
|
29
|
+
@apply text-primary;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.spinner--success {
|
|
33
|
-
|
|
33
|
+
@apply text-success;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.spinner--danger {
|
|
37
|
-
|
|
37
|
+
@apply text-danger;
|
|
38
38
|
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
/** Base Styling */
|
|
2
2
|
.switch {
|
|
3
|
-
|
|
3
|
+
@apply cursor-pointer;
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
@apply bg-primary/10 relative flex cursor-pointer rounded-full border-2;
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
&[data-checked] {
|
|
8
|
+
@apply bg-primary/30;
|
|
9
|
+
}
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
&:focus-visible {
|
|
12
|
+
@apply status-focused;
|
|
13
|
+
}
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
&[data-disabled] {
|
|
16
|
+
@apply status-disabled;
|
|
17
|
+
}
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.switch__thumb {
|
|
21
|
-
|
|
21
|
+
@apply bg-primary aspect-square h-full rounded-full shadow;
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
@apply transition-[translate] motion-reduce:transition-none;
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
&[data-checked] {
|
|
26
|
+
@apply translate-x-full;
|
|
27
|
+
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.switch--sm {
|
|
31
|
-
|
|
31
|
+
@apply h-4 w-7;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.switch--md {
|
|
35
|
-
|
|
35
|
+
@apply h-6 w-10;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.switch--lg {
|
|
39
|
-
|
|
39
|
+
@apply h-8 w-14;
|
|
40
40
|
}
|
package/src/components/table.css
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
/** Base Styling */
|
|
2
2
|
.table {
|
|
3
|
-
|
|
3
|
+
@apply bg-surface text-surface-foreground w-full border-collapse;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
.table__thead {
|
|
7
|
-
|
|
7
|
+
@apply bg-secondary text-secondary-foreground;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.table__th {
|
|
11
|
-
|
|
11
|
+
@apply border-border px-4 py-2 text-left font-medium;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.table__tbody {
|
|
15
|
-
|
|
15
|
+
@apply divide-border divide-y;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
.table__tr {
|
|
19
|
-
|
|
19
|
+
@apply cursor-pointer;
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
&:hover {
|
|
22
|
+
@apply bg-secondary/50;
|
|
23
|
+
}
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.table__td {
|
|
27
|
-
|
|
27
|
+
@apply border-border px-4 py-2;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.table__caption {
|
|
31
|
-
|
|
31
|
+
@apply text-secondary-foreground mt-2 text-sm;
|
|
32
32
|
}
|
package/src/components/tabs.css
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
.tabs {
|
|
2
|
-
|
|
2
|
+
@apply flex flex-col gap-4;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.tabs__list {
|
|
6
|
-
|
|
6
|
+
@apply flex items-center;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.tabs__tab {
|
|
10
|
-
|
|
10
|
+
@apply cursor-pointer;
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
@apply bg-secondary text-secondary-foreground hover-safe:bg-secondary/80;
|
|
13
|
+
@apply inline-flex items-center justify-center;
|
|
14
|
+
@apply h-10 w-fit px-3 py-2;
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
@apply transition-colors motion-reduce:transition-none;
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
&[data-active] {
|
|
19
|
+
@apply bg-primary text-primary-foreground hover-safe:bg-primary/90;
|
|
20
|
+
}
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
&:focus-visible {
|
|
23
|
+
@apply status-focused;
|
|
24
|
+
}
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
&:first-of-type {
|
|
27
|
+
@apply rounded-l;
|
|
28
|
+
}
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
&:last-of-type {
|
|
31
|
+
@apply rounded-r;
|
|
32
|
+
}
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.tabs__panel {
|
|
36
|
-
|
|
36
|
+
@apply flex;
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
&:focus-visible {
|
|
39
|
+
@apply status-focused;
|
|
40
|
+
}
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
&[hidden] {
|
|
43
|
+
@apply hidden;
|
|
44
|
+
}
|
|
45
45
|
}
|
package/src/components/text.css
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
.tooltip__positioner {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
z-index: 50;
|
|
3
|
+
width: var(--positioner-width);
|
|
4
|
+
max-width: var(--available-width);
|
|
5
|
+
height: var(--positioner-height);
|
|
6
|
+
pointer-events: none;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.tooltip__popup {
|
|
10
|
-
|
|
10
|
+
@apply rounded px-2 py-1 text-xs leading-none font-medium;
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
@apply bg-overlay-foreground text-overlay;
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
@apply transition-[transform,scale,opacity] motion-reduce:transition-none;
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
&[data-starting-style],
|
|
17
|
+
&[data-ending-style] {
|
|
18
|
+
@apply scale-90 opacity-0;
|
|
19
|
+
}
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.tooltip__arrow {
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
|
|
24
|
+
@apply bg-overlay-foreground absolute z-50 size-2;
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
&[data-side="top"] {
|
|
27
|
+
@apply -bottom-1 rotate-180;
|
|
28
|
+
}
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
&[data-side="right"] {
|
|
31
|
+
@apply -start-1.5 rotate-90;
|
|
32
|
+
}
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
&[data-side="bottom"] {
|
|
35
|
+
@apply -top-1;
|
|
36
|
+
}
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
&[data-side="left"] {
|
|
39
|
+
@apply -end-1.5 -rotate-90;
|
|
40
|
+
}
|
|
41
41
|
}
|
package/src/styles.css
CHANGED
|
@@ -2,123 +2,123 @@
|
|
|
2
2
|
@import "./components/index.css" layer(components);
|
|
3
3
|
|
|
4
4
|
:root {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
5
|
+
--navbar-height: 4rem;
|
|
6
|
+
--radius: 0.625rem;
|
|
7
|
+
|
|
8
|
+
--background: oklch(0.9702 0 0);
|
|
9
|
+
--foreground: oklch(0.145 0 0);
|
|
10
|
+
|
|
11
|
+
--surface: oklch(1 0 0);
|
|
12
|
+
--surface-foreground: oklch(0.145 0 0);
|
|
13
|
+
--overlay: oklch(1 0 0 / 90%);
|
|
14
|
+
--overlay-foreground: oklch(0.145 0 0);
|
|
15
|
+
--input: oklch(0.922 0 0);
|
|
16
|
+
--input-foreground: oklch(0.205 0 0);
|
|
17
|
+
|
|
18
|
+
--primary: oklch(0.205 0 0);
|
|
19
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
20
|
+
--secondary: oklch(0.91 0.0013 286.37);
|
|
21
|
+
--secondary-foreground: oklch(0.205 0 0);
|
|
22
|
+
--muted: oklch(0.97 0 0);
|
|
23
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
24
|
+
--danger: oklch(0.577 0.245 27.325);
|
|
25
|
+
--danger-foreground: oklch(0.985 0 0);
|
|
26
|
+
--success: oklch(0.623 0.17 145);
|
|
27
|
+
--success-foreground: oklch(0.985 0 0);
|
|
28
|
+
|
|
29
|
+
--border: oklch(0.922 0 0);
|
|
30
|
+
--ring: oklch(62% 0.18 250);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.dark {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
34
|
+
--background: oklch(0.145 0 0);
|
|
35
|
+
--foreground: oklch(0.985 0 0);
|
|
36
|
+
|
|
37
|
+
--surface: oklch(0.205 0 0);
|
|
38
|
+
--surface-foreground: oklch(0.985 0 0);
|
|
39
|
+
--overlay: oklch(0.205 0 0);
|
|
40
|
+
--overlay-foreground: oklch(0.985 0 0);
|
|
41
|
+
--input: oklch(1 0 0 / 15%);
|
|
42
|
+
--input-foreground: oklch(0.985 0 0);
|
|
43
|
+
|
|
44
|
+
--primary: oklch(0.922 0 0);
|
|
45
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
46
|
+
--secondary: oklch(0.269 0 0);
|
|
47
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
48
|
+
--muted: oklch(0.269 0 0);
|
|
49
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
50
|
+
--danger: oklch(0.704 0.191 22.216);
|
|
51
|
+
--danger-foreground: oklch(0.985 0 0);
|
|
52
|
+
--success: oklch(0.7017 0.3225 145);
|
|
53
|
+
--success-foreground: oklch(0.205 0 0);
|
|
54
|
+
|
|
55
|
+
--border: oklch(1 0 0 / 10%);
|
|
56
|
+
--ring: oklch(62% 0.18 250);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
@theme inline {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
60
|
+
--radius: var(--radius);
|
|
61
|
+
|
|
62
|
+
--color-background: var(--background);
|
|
63
|
+
--color-foreground: var(--foreground);
|
|
64
|
+
|
|
65
|
+
--color-surface: var(--surface);
|
|
66
|
+
--color-surface-foreground: var(--surface-foreground);
|
|
67
|
+
--color-overlay: var(--overlay);
|
|
68
|
+
--color-overlay-foreground: var(--overlay-foreground);
|
|
69
|
+
--color-input: var(--input);
|
|
70
|
+
--color-input-foreground: var(--input-foreground);
|
|
71
|
+
|
|
72
|
+
--color-primary: var(--primary);
|
|
73
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
74
|
+
--color-secondary: var(--secondary);
|
|
75
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
76
|
+
--color-muted: var(--muted);
|
|
77
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
78
|
+
--color-danger: var(--danger);
|
|
79
|
+
--color-danger-foreground: var(--danger-foreground);
|
|
80
|
+
--color-success: var(--success);
|
|
81
|
+
--color-success-foreground: var(--success-foreground);
|
|
82
|
+
|
|
83
|
+
--color-border: var(--border);
|
|
84
|
+
--color-ring: var(--ring);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
@utility status-focused {
|
|
88
|
-
|
|
88
|
+
@apply ring-offset-background ring-2 ring-offset-2 outline-none;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
@utility status-disabled {
|
|
92
|
-
|
|
92
|
+
@apply cursor-not-allowed opacity-50;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
@utility status-pending {
|
|
96
|
-
|
|
96
|
+
@apply cursor-wait opacity-75;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
@custom-variant hover-safe {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
100
|
+
@media (hover: hover) and (pointer: fine) {
|
|
101
|
+
&:hover {
|
|
102
|
+
@slot;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&:hover::before,
|
|
106
|
+
&:hover::after {
|
|
107
|
+
@slot;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
@layer base {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
113
|
+
* {
|
|
114
|
+
@apply border-border outline-ring/50;
|
|
115
|
+
}
|
|
116
116
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
117
|
+
body {
|
|
118
|
+
@apply bg-background text-foreground relative;
|
|
119
|
+
}
|
|
120
120
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
121
|
+
.root {
|
|
122
|
+
@apply isolate antialiased;
|
|
123
|
+
}
|
|
124
124
|
}
|