@rokkit/themes 1.0.0-next.125 → 1.0.0-next.128

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.
Files changed (137) hide show
  1. package/README.md +118 -9
  2. package/build.mjs +237 -0
  3. package/package.json +43 -28
  4. package/src/base/breadcrumbs.css +46 -0
  5. package/src/base/button.css +247 -0
  6. package/src/base/card.css +36 -0
  7. package/src/base/carousel.css +122 -12
  8. package/src/base/connector.css +92 -0
  9. package/src/base/display.css +91 -0
  10. package/src/base/floating-action.css +388 -0
  11. package/src/base/floating-navigation.css +381 -0
  12. package/src/base/grid.css +93 -0
  13. package/src/base/index.css +39 -0
  14. package/src/base/input.css +198 -39
  15. package/src/base/item.css +78 -0
  16. package/src/base/list.css +179 -0
  17. package/src/base/menu.css +274 -0
  18. package/src/base/pill.css +57 -0
  19. package/src/base/progress.css +28 -15
  20. package/src/base/range.css +121 -0
  21. package/src/base/rating.css +40 -0
  22. package/src/base/reveal.css +37 -0
  23. package/src/base/search-filter.css +132 -0
  24. package/src/base/select.css +411 -0
  25. package/src/base/shine.css +14 -0
  26. package/src/base/stepper.css +140 -0
  27. package/src/base/switch.css +152 -0
  28. package/src/base/table.css +143 -33
  29. package/src/base/tabs.css +171 -0
  30. package/src/base/tilt.css +14 -0
  31. package/src/base/timeline.css +84 -0
  32. package/src/base/toggle.css +138 -0
  33. package/src/base/toolbar.css +337 -0
  34. package/src/base/tree.css +195 -11
  35. package/src/base/upload-progress.css +155 -0
  36. package/src/base/upload-target.css +67 -0
  37. package/src/glass/button.css +152 -0
  38. package/src/glass/floating-action.css +61 -0
  39. package/src/glass/floating-navigation.css +74 -0
  40. package/src/glass/index.css +23 -0
  41. package/src/glass/input.css +124 -0
  42. package/src/glass/list.css +122 -0
  43. package/src/glass/menu.css +92 -0
  44. package/src/glass/range.css +61 -0
  45. package/src/glass/search-filter.css +49 -0
  46. package/src/glass/select.css +178 -0
  47. package/src/glass/switch.css +28 -0
  48. package/src/glass/table.css +87 -0
  49. package/src/glass/tabs.css +58 -0
  50. package/src/glass/timeline.css +46 -0
  51. package/src/glass/toggle.css +48 -0
  52. package/src/glass/toolbar.css +84 -0
  53. package/src/glass/tree.css +104 -0
  54. package/src/index.css +18 -0
  55. package/src/index.js +25 -2
  56. package/src/material/button.css +153 -0
  57. package/src/material/floating-action.css +60 -0
  58. package/src/material/floating-navigation.css +74 -0
  59. package/src/material/index.css +23 -0
  60. package/src/material/input.css +118 -40
  61. package/src/material/list.css +90 -64
  62. package/src/material/menu.css +92 -0
  63. package/src/material/range.css +62 -0
  64. package/src/material/search-filter.css +49 -0
  65. package/src/material/select.css +170 -0
  66. package/src/material/switch.css +28 -0
  67. package/src/material/table.css +87 -0
  68. package/src/material/tabs.css +62 -0
  69. package/src/material/timeline.css +46 -0
  70. package/src/material/toggle.css +48 -0
  71. package/src/material/toolbar.css +84 -0
  72. package/src/material/tree.css +100 -0
  73. package/src/minimal/button.css +152 -0
  74. package/src/minimal/floating-action.css +59 -0
  75. package/src/minimal/floating-navigation.css +70 -0
  76. package/src/minimal/index.css +23 -0
  77. package/src/minimal/input.css +81 -120
  78. package/src/minimal/list.css +90 -104
  79. package/src/minimal/menu.css +88 -0
  80. package/src/minimal/range.css +61 -0
  81. package/src/minimal/search-filter.css +49 -0
  82. package/src/minimal/select.css +168 -0
  83. package/src/minimal/switch.css +28 -0
  84. package/src/minimal/table.css +87 -0
  85. package/src/minimal/tabs.css +53 -31
  86. package/src/minimal/timeline.css +45 -0
  87. package/src/minimal/toggle.css +48 -0
  88. package/src/minimal/toolbar.css +84 -0
  89. package/src/minimal/tree.css +100 -0
  90. package/src/rokkit/button.css +225 -0
  91. package/src/rokkit/connector.css +11 -0
  92. package/src/rokkit/floating-action.css +65 -0
  93. package/src/rokkit/floating-navigation.css +83 -0
  94. package/src/rokkit/grid.css +46 -0
  95. package/src/rokkit/index.css +27 -0
  96. package/src/rokkit/input.css +130 -0
  97. package/src/rokkit/list.css +127 -0
  98. package/src/rokkit/menu.css +93 -0
  99. package/src/rokkit/range.css +62 -0
  100. package/src/rokkit/search-filter.css +49 -0
  101. package/src/rokkit/select.css +185 -0
  102. package/src/rokkit/switch.css +28 -0
  103. package/src/rokkit/table.css +68 -38
  104. package/src/rokkit/tabs.css +82 -0
  105. package/src/rokkit/timeline.css +46 -0
  106. package/src/rokkit/toggle.css +36 -52
  107. package/src/rokkit/toolbar.css +84 -0
  108. package/src/rokkit/tree.css +123 -0
  109. package/src/rokkit/upload-progress.css +102 -0
  110. package/src/rokkit/upload-target.css +50 -0
  111. package/src/base/alert.css +0 -30
  112. package/src/base/animation.css +0 -37
  113. package/src/base/atoms.css +0 -58
  114. package/src/base/core.css +0 -107
  115. package/src/base/layout.css +0 -65
  116. package/src/base/molecules.css +0 -109
  117. package/src/base/organisms.css +0 -66
  118. package/src/base/scrollbar.css +0 -16
  119. package/src/base/toggles.css +0 -17
  120. package/src/base.css +0 -13
  121. package/src/markdown.css +0 -955
  122. package/src/material/base.css +0 -12
  123. package/src/material/form.css +0 -30
  124. package/src/material.css +0 -9
  125. package/src/minimal/base.css +0 -8
  126. package/src/minimal/form.css +0 -87
  127. package/src/minimal.css +0 -11
  128. package/src/mixins/mixins.scss +0 -66
  129. package/src/mixins/palette.scss +0 -48
  130. package/src/prism.css +0 -102
  131. package/src/rokkit/alert.css +0 -4
  132. package/src/rokkit/atoms.css +0 -52
  133. package/src/rokkit/carousel.css +0 -19
  134. package/src/rokkit/layout.css +0 -17
  135. package/src/rokkit/molecules.css +0 -124
  136. package/src/rokkit/organisms.css +0 -307
  137. package/src/rokkit.css +0 -11
@@ -1,136 +1,122 @@
1
- [data-style='minimal'] rk-item {
2
- @apply flex items-center gap-1;
3
- }
4
- [data-style='minimal'] rk-accordion {
5
- @apply flex-grow overflow-y-scroll focus-within:outline-none;
6
- }
7
- [data-style='minimal'] rk-accordion > div,
8
- [data-style='minimal'] rk-accordion > details {
9
- @apply relative;
10
- }
11
- [data-style='minimal'] rk-list,
12
- [data-style='minimal'] rk-accordion rk-summary {
13
- @apply border-l-2px border-l-surface-z3;
14
- }
15
- [data-style='minimal'] :not(rk-accordion > div) rk-list:focus-within {
16
- @apply outline-offset-3 outline-secondary-700 outline;
17
- }
18
- [data-style='minimal'] rk-list > rk-item,
19
- [data-style='minimal'] rk-accordion summary {
20
- @apply bg-surface-z1 text-surface-700 items-center px-2 leading-8;
21
- }
1
+ /**
2
+ * List - Minimal Theme Styles
3
+ *
4
+ * Clean, understated list with subtle borders and hover states.
5
+ */
22
6
 
23
- [data-style='minimal'] rk-item > a {
24
- @apply gap-2 px-0;
25
- }
7
+ /* =============================================================================
8
+ List Container
9
+ ============================================================================= */
26
10
 
27
- [data-style='minimal'] rk-list rk-item:hover {
28
- @apply -m-l-2px border-l-2px border-l-surface-z2;
29
- }
30
- [data-style='minimal'] rk-accordion summary:hover {
31
- @apply border-l-surface-z2;
32
- }
33
- [data-style='minimal'] rk-list rk-item[aria-selected='true'] {
34
- @apply -m-l-2px border-l-2px border-l-secondary-600 text-secondary-600 bg-surface-z2;
35
- }
36
- [data-style='minimal'] rk-accordion .is-selected summary {
37
- @apply border-l-2px border-l-secondary-600 bg-surface-z2;
11
+ [data-style='minimal'] [data-list]:focus-within {
12
+ @apply outline-none;
38
13
  }
39
14
 
40
- [data-style='minimal'] rk-accordion .is-expanded summary {
41
- @apply z-1 sticky top-0;
42
- }
43
- [data-style='minimal'] rk-accordion rk-item > a {
44
- @apply px-0;
45
- }
46
- [data-style='minimal'] rk-item > img,
47
- [data-style='minimal'] rk-item > a > img {
48
- @apply h-6 w-6;
49
- }
15
+ /* =============================================================================
16
+ List Items
17
+ ============================================================================= */
50
18
 
51
- [data-style='minimal'] rk-accordion .is-selected rk-summary,
52
- [data-style='minimal'] rk-accordion .is-selected rk-summary > a,
53
- [data-style='minimal'] rk-accordion rk-item[aria-selected='true'],
54
- [data-style='minimal'] rk-accordion rk-item[aria-selected='true'] > a {
55
- @apply text-secondary-600;
56
- /* @apply hover:text-secondary; */
19
+ [data-style='minimal'] [data-list] [data-list-item] {
20
+ @apply text-surface-z7 border-0 border-solid border-transparent;
57
21
  }
58
22
 
59
- /* [data-style="minimal"] nested-list {
60
- @apply text-sm;
61
- } */
62
- [data-style='minimal'] rk-node > div {
63
- @apply h-7 px-2 py-1;
64
- }
65
- [data-style='minimal'] rk-node > rk-item {
66
- @apply gap-1 px-1;
23
+ [data-style='minimal'] [data-list] a[data-list-item],
24
+ [data-style='minimal'] [data-list] button[data-list-item] {
25
+ @apply text-surface-z6;
67
26
  }
68
- [data-style='minimal'] rk-node > div > span > i {
69
- @apply w-3 border-none;
27
+
28
+ /* Hover and focus (keyboard navigation) */
29
+ [data-style='minimal'] [data-list] [data-list-item]:hover:not(:disabled):not([data-disabled='true']),
30
+ [data-style='minimal'] [data-list] [data-list-item]:focus:not(:disabled):not([data-disabled='true']) {
31
+ @apply text-surface-z9 border-l-surface-z2 border-l-2 outline-none;
70
32
  }
71
- [data-style='minimal'] rk-node > div > rk-icon {
72
- @apply text-surface-400 text-xs;
33
+
34
+ /* Active state — muted when list not focused */
35
+ [data-style='minimal'] [data-list] [data-list-item][data-active='true'] {
36
+ @apply text-surface-z8 border-primary-z4 border-l-2;
73
37
  }
74
- [data-style='minimal'] rk-node[aria-selected='true'] > rk-item > p {
75
- @apply text-secondary-600;
38
+
39
+ /* Active state — full highlight when list has focus */
40
+ [data-style='minimal'] [data-list]:focus-within [data-list-item][data-active='true'] {
41
+ @apply text-primary-z7 border-primary-z4 border-l-2;
76
42
  }
77
- [data-style='minimal'] rk-node.is-selected rk-icon {
78
- @apply text-secondary-600;
79
- @apply hover:text-secondary-600;
43
+
44
+ /* Active + hover/focus */
45
+ [data-style='minimal'] [data-list] [data-list-item][data-active='true']:hover:not(:disabled),
46
+ [data-style='minimal'] [data-list] [data-list-item][data-active='true']:focus:not(:disabled) {
47
+ @apply text-primary-z8;
80
48
  }
81
49
 
82
- [data-style='minimal'] .small rk-list > rk-item,
83
- [data-style='minimal'] .small rk-accordion rk-summary {
84
- @apply text-sm;
50
+ /* =============================================================================
51
+ Item Elements
52
+ ============================================================================= */
53
+
54
+ [data-style='minimal'] [data-list] [data-list-item] [data-item-icon] {
55
+ @apply text-surface-z5;
85
56
  }
86
57
 
87
- [data-style='minimal'] .small rk-node > div {
88
- @apply h-5 gap-1 text-sm;
58
+ [data-style='minimal'] [data-list] [data-list-item]:hover:not(:disabled) [data-item-icon],
59
+ [data-style='minimal'] [data-list] [data-list-item]:focus:not(:disabled) [data-item-icon] {
60
+ @apply text-surface-z6;
89
61
  }
90
- [data-style='minimal'] .small rk-node > div > rk-icon {
91
- @apply text-sm;
62
+
63
+ [data-style='minimal'] [data-list] [data-list-item][data-active='true'] [data-item-icon] {
64
+ @apply text-primary-z5;
92
65
  }
93
- [data-style='minimal'] .small rk-item > img,
94
- [data-style='minimal'] .small rk-item > a > img {
95
- @apply h-4 w-4;
66
+
67
+ [data-style='minimal'] [data-list] [data-list-item] [data-item-description] {
68
+ @apply text-surface-z5;
96
69
  }
97
- [data-style='minimal'] .small rk-item > a > rk-icon {
98
- @apply text-sm leading-6;
70
+
71
+ [data-style='minimal'] [data-list] [data-list-item][data-active='true'] [data-item-description] {
72
+ @apply text-primary-z6;
99
73
  }
100
- [data-style='minimal'] rk-accordion.indented rk-list > rk-item {
101
- @apply px-4;
74
+
75
+ [data-style='minimal'] [data-list] [data-list-item] [data-item-badge] {
76
+ @apply text-surface-z6 bg-transparent border-surface-z4 border;
102
77
  }
103
78
 
104
- [data-style='minimal'] .folder-tree {
105
- @apply bg-surface-z0 h-full min-w-40;
79
+ [data-style='minimal'] [data-list] [data-list-item][data-active='true'] [data-item-badge] {
80
+ @apply text-primary-z7 border-primary-z4;
106
81
  }
107
82
 
108
- /* [data-style="minimal"] rk-node > div > i {
109
- @apply border-surface-z3;
110
- } */
83
+ /* =============================================================================
84
+ Groups
85
+ ============================================================================= */
111
86
 
112
- [data-style='minimal'] rk-crumbs {
113
- @apply flex-grow gap-1 text-sm;
87
+ [data-style='minimal'] [data-list] [data-list-group] {
88
+ @apply text-surface-z5;
114
89
  }
115
- [data-style='minimal'] rk-crumbs rk-crumb.is-selected {
116
- @apply text-secondary;
90
+
91
+ [data-style='minimal'] [data-list] [data-list-group]:hover:not(:disabled),
92
+ [data-style='minimal'] [data-list] [data-list-group]:focus:not(:disabled) {
93
+ @apply text-surface-z7 border-l-surface-z3 border-l-2;
117
94
  }
118
95
 
119
- [data-style='minimal'] rk-switch {
120
- @apply mx-auto min-h-6 min-w-12 rounded;
121
- @apply bg-surface-z2 border-surface-z3 border;
122
- @apply p-2px leading-loose;
96
+ /* =============================================================================
97
+ Separator
98
+ ============================================================================= */
99
+
100
+ [data-style='minimal'] [data-list] [data-list-separator] {
101
+ @apply bg-surface-z3;
123
102
  }
124
- [data-style='minimal'] rk-switch rk-item {
125
- @apply items-center justify-center gap-1 px-3;
126
- @apply min-h-6 min-w-6 cursor-pointer rounded;
103
+
104
+ /* =============================================================================
105
+ Multi-Selection
106
+ ============================================================================= */
107
+
108
+ [data-style='minimal'] [data-list] [data-list-item][data-selected='true'] {
109
+ @apply text-primary-z7 border-primary-z3 border-l-2;
127
110
  }
128
- [data-style='minimal'] rk-switch.compact {
129
- @apply rounded-full;
111
+
112
+ [data-style='minimal'] [data-list]:focus-within [data-list-item][data-selected='true'] {
113
+ @apply text-primary-z7 border-primary-z4 border-l-2;
130
114
  }
131
- [data-style='minimal'] rk-switch.compact > rk-item {
132
- @apply gap-0 rounded-full px-0;
115
+
116
+ [data-style='minimal'] [data-list] [data-list-item][data-selected='true']:hover:not(:disabled) {
117
+ @apply text-primary-z8;
133
118
  }
134
- [data-style='minimal'] rk-switch rk-item[aria-selected='true'] {
135
- @apply bg-secondary text-surface-800;
119
+
120
+ [data-style='minimal'] [data-list] [data-list-item][data-selected='true'] [data-item-icon] {
121
+ @apply text-primary-z5;
136
122
  }
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Menu - Minimal Theme Styles
3
+ *
4
+ * Clean, understated menu with subtle borders.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Menu Trigger
9
+ ============================================================================= */
10
+
11
+ [data-style='minimal'] [data-menu-trigger] {
12
+ @apply border-surface-z4 bg-transparent text-surface-z7 border;
13
+ }
14
+
15
+ [data-style='minimal'] [data-menu-trigger]:hover:not(:disabled) {
16
+ @apply text-surface-z9 border-surface-z5;
17
+ }
18
+
19
+ [data-style='minimal'] [data-menu-trigger]:focus-visible {
20
+ @apply outline-none ring-1 ring-surface-z5;
21
+ }
22
+
23
+ [data-style='minimal'] [data-menu][data-open='true'] [data-menu-trigger] {
24
+ @apply border-surface-z6;
25
+ }
26
+
27
+ /* Trigger elements */
28
+ [data-style='minimal'] [data-menu-trigger] [data-menu-icon] {
29
+ @apply text-surface-z5;
30
+ }
31
+
32
+ [data-style='minimal'] [data-menu-trigger]:hover:not(:disabled) [data-menu-icon] {
33
+ @apply text-surface-z7;
34
+ }
35
+
36
+ [data-style='minimal'] [data-menu-trigger] [data-menu-arrow] {
37
+ @apply text-surface-z4;
38
+ }
39
+
40
+ /* =============================================================================
41
+ Menu Dropdown
42
+ ============================================================================= */
43
+
44
+ [data-style='minimal'] [data-menu-dropdown] {
45
+ @apply bg-surface-z1 border-surface-z3 border shadow-sm;
46
+ }
47
+
48
+ /* =============================================================================
49
+ Menu Items
50
+ ============================================================================= */
51
+
52
+ [data-style='minimal'] [data-menu-item] {
53
+ @apply text-surface-z7 border-0 border-solid border-transparent;
54
+ }
55
+
56
+ [data-style='minimal'] [data-menu-item]:hover:not(:disabled),
57
+ [data-style='minimal'] [data-menu-item]:focus:not(:disabled) {
58
+ @apply text-surface-z9 border-l-surface-z2 border-l-2 outline-none;
59
+ }
60
+
61
+ /* Item elements */
62
+ [data-style='minimal'] [data-menu-item] [data-item-icon] {
63
+ @apply text-surface-z5;
64
+ }
65
+
66
+ [data-style='minimal'] [data-menu-item]:hover:not(:disabled) [data-item-icon] {
67
+ @apply text-surface-z6;
68
+ }
69
+
70
+ [data-style='minimal'] [data-menu-item] [data-item-description] {
71
+ @apply text-surface-z5;
72
+ }
73
+
74
+ /* =============================================================================
75
+ Groups
76
+ ============================================================================= */
77
+
78
+ [data-style='minimal'] [data-menu-group] {
79
+ @apply text-surface-z5;
80
+ }
81
+
82
+ /* =============================================================================
83
+ Divider
84
+ ============================================================================= */
85
+
86
+ [data-style='minimal'] [data-menu-separator] {
87
+ @apply bg-surface-z3;
88
+ }
@@ -0,0 +1,61 @@
1
+ /**
2
+ * Range - Minimal Theme Styles
3
+ *
4
+ * Clean, understated styling with subtle borders.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Track
9
+ ============================================================================= */
10
+
11
+ [data-style='minimal'] [data-range-bar] {
12
+ @apply bg-surface-z3;
13
+ }
14
+
15
+ [data-style='minimal'] [data-range-selected] {
16
+ @apply bg-primary;
17
+ }
18
+
19
+ /* =============================================================================
20
+ Thumb
21
+ ============================================================================= */
22
+
23
+ [data-style='minimal'] [data-range-thumb] {
24
+ @apply bg-surface-z1 border-primary border-2;
25
+ }
26
+
27
+ [data-style='minimal'] [data-range-thumb][data-sliding] {
28
+ @apply bg-primary;
29
+ }
30
+
31
+ [data-style='minimal'] [data-range-thumb]:focus-visible {
32
+ @apply bg-primary;
33
+ }
34
+
35
+ /* =============================================================================
36
+ Ticks
37
+ ============================================================================= */
38
+
39
+ [data-style='minimal'] [data-range-tick] {
40
+ @apply text-surface-z6;
41
+ }
42
+
43
+ [data-style='minimal'] [data-tick-bar] {
44
+ @apply border-surface-z4;
45
+ }
46
+
47
+ [data-style='minimal'] [data-tick-label] {
48
+ @apply text-surface-z6;
49
+ }
50
+
51
+ /* =============================================================================
52
+ Disabled
53
+ ============================================================================= */
54
+
55
+ [data-style='minimal'] [data-range][data-disabled] [data-range-thumb] {
56
+ @apply bg-surface-z3 border-surface-z4;
57
+ }
58
+
59
+ [data-style='minimal'] [data-range][data-disabled] [data-range-selected] {
60
+ @apply bg-surface-z4;
61
+ }
@@ -0,0 +1,49 @@
1
+ /**
2
+ * SearchFilter - Minimal Theme Styles
3
+ *
4
+ * Clean, understated styling with subtle borders.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Input
9
+ ============================================================================= */
10
+
11
+ [data-style='minimal'] [data-search-input] {
12
+ @apply text-surface-z7 border-surface-z4 border bg-transparent;
13
+ }
14
+
15
+ [data-style='minimal'] [data-search-input]:focus {
16
+ @apply border-surface-z6 ring-surface-z5 ring-1;
17
+ }
18
+
19
+ [data-style='minimal'] [data-search-input]::placeholder {
20
+ @apply text-surface-z5;
21
+ }
22
+
23
+ /* =============================================================================
24
+ Clear Button
25
+ ============================================================================= */
26
+
27
+ [data-style='minimal'] [data-search-clear] {
28
+ @apply text-surface-z5;
29
+ }
30
+
31
+ [data-style='minimal'] [data-search-clear]:hover {
32
+ @apply text-surface-z8;
33
+ }
34
+
35
+ /* =============================================================================
36
+ Tags
37
+ ============================================================================= */
38
+
39
+ [data-style='minimal'] [data-search-tag] {
40
+ @apply text-surface-z7 border-surface-z4 border bg-transparent;
41
+ }
42
+
43
+ [data-style='minimal'] [data-search-tag-remove] {
44
+ @apply text-surface-z5;
45
+ }
46
+
47
+ [data-style='minimal'] [data-search-tag-remove]:hover {
48
+ @apply text-surface-z8;
49
+ }
@@ -0,0 +1,168 @@
1
+ /**
2
+ * Select - Minimal Theme Styles
3
+ *
4
+ * Clean, understated select with subtle borders.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Trigger Button
9
+ ============================================================================= */
10
+
11
+ [data-style='minimal'] [data-select-trigger] {
12
+ @apply text-surface-z7 border-surface-z4 border bg-transparent;
13
+ }
14
+
15
+ [data-style='minimal'] [data-select-trigger]:hover:not(:disabled) {
16
+ @apply border-surface-z5 text-surface-z8;
17
+ }
18
+
19
+ [data-style='minimal'] [data-select-trigger]:focus-visible {
20
+ @apply ring-surface-z5 outline-none ring-1;
21
+ }
22
+
23
+ [data-style='minimal'] [data-select][data-open='true'] [data-select-trigger] {
24
+ @apply border-surface-z6;
25
+ }
26
+
27
+ /* =============================================================================
28
+ Placeholder
29
+ ============================================================================= */
30
+
31
+ [data-style='minimal'] [data-select-placeholder] {
32
+ @apply text-surface-z5;
33
+ }
34
+
35
+ /* =============================================================================
36
+ Arrow
37
+ ============================================================================= */
38
+
39
+ [data-style='minimal'] [data-select-arrow] {
40
+ @apply text-surface-z5;
41
+ }
42
+
43
+ [data-style='minimal'] [data-select-trigger]:hover:not(:disabled) [data-select-arrow] {
44
+ @apply text-surface-z6;
45
+ }
46
+
47
+ /* =============================================================================
48
+ Tags (MultiSelect)
49
+ ============================================================================= */
50
+
51
+ [data-style='minimal'] [data-select-tag] {
52
+ @apply text-surface-z7 border-surface-z4 border bg-transparent;
53
+ }
54
+
55
+ [data-style='minimal'] [data-select-tag-remove] {
56
+ @apply text-surface-z5;
57
+ }
58
+
59
+ [data-style='minimal'] [data-select-tag-remove]:hover {
60
+ @apply text-surface-z8;
61
+ }
62
+
63
+ /* =============================================================================
64
+ Dropdown Panel
65
+ ============================================================================= */
66
+
67
+ [data-style='minimal'] [data-select-dropdown] {
68
+ @apply bg-surface-z1 border-surface-z3 border shadow-sm;
69
+ }
70
+
71
+ /* =============================================================================
72
+ Options
73
+ ============================================================================= */
74
+
75
+ [data-style='minimal'] [data-select-option] {
76
+ @apply text-surface-z7 border-0 border-solid border-transparent;
77
+ }
78
+
79
+ /* Hover and focus */
80
+ [data-style='minimal'] [data-select-option]:hover:not(:disabled),
81
+ [data-style='minimal'] [data-select-option]:focus:not(:disabled) {
82
+ @apply text-surface-z9 border-l-surface-z2 border-l-2 outline-none;
83
+ }
84
+
85
+ /* Selected state */
86
+ [data-style='minimal'] [data-select-option][data-selected='true'] {
87
+ @apply text-surface-z8 border-primary-z4 border-l-2;
88
+ }
89
+
90
+ /* Selected state — full highlight when dropdown has focus */
91
+ [data-style='minimal'] [data-select-dropdown]:focus-within [data-select-option][data-selected='true'] {
92
+ @apply text-primary-z7 border-primary-z4 border-l-2;
93
+ }
94
+
95
+ /* Check mark */
96
+ [data-style='minimal'] [data-select-check] {
97
+ @apply text-primary-z6;
98
+ }
99
+
100
+ /* Checkbox */
101
+ [data-style='minimal'] [data-select-checkbox] {
102
+ @apply border-surface-z5 bg-transparent;
103
+ }
104
+
105
+ [data-style='minimal'] [data-select-checkbox][data-checked='true'] {
106
+ @apply bg-primary-z5 border-primary-z5 text-white;
107
+ }
108
+
109
+ /* Item elements */
110
+ /*[data-style='minimal'] [data-select-option] [data-item-icon] {
111
+ @apply text-surface-z5;
112
+ }
113
+
114
+ [data-style='minimal'] [data-select-option]:hover:not(:disabled) [data-item-icon] {
115
+ @apply text-surface-z6;
116
+ }
117
+
118
+ [data-style='minimal'] [data-select-option][data-selected='true'] [data-item-icon] {
119
+ @apply text-secondary-z7;
120
+ }*/
121
+
122
+ [data-style='minimal'] [data-select-option] [data-item-description] {
123
+ @apply text-surface-z5;
124
+ }
125
+
126
+ [data-style='minimal'] [data-select-option][data-selected='true'] [data-item-description] {
127
+ @apply text-primary-z6;
128
+ }
129
+
130
+ /* =============================================================================
131
+ Groups
132
+ ============================================================================= */
133
+
134
+ [data-style='minimal'] [data-select-group-label] {
135
+ @apply text-surface-z5;
136
+ }
137
+
138
+ /* =============================================================================
139
+ Divider
140
+ ============================================================================= */
141
+
142
+ [data-style='minimal'] [data-select-divider] {
143
+ @apply bg-surface-z3;
144
+ }
145
+
146
+ /* =============================================================================
147
+ Filter Input
148
+ ============================================================================= */
149
+
150
+ [data-style='minimal'] [data-select-filter] {
151
+ @apply bg-surface-z1;
152
+ }
153
+
154
+ [data-style='minimal'] [data-select-filter-input] {
155
+ @apply text-surface-z7 border-surface-z4 border bg-transparent;
156
+ }
157
+
158
+ [data-style='minimal'] [data-select-filter-input]:focus {
159
+ @apply border-surface-z6 ring-surface-z5 ring-1;
160
+ }
161
+
162
+ [data-style='minimal'] [data-select-filter-input]::placeholder {
163
+ @apply text-surface-z5;
164
+ }
165
+
166
+ [data-style='minimal'] [data-select-empty] {
167
+ @apply text-surface-z5;
168
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Switch - Minimal Theme Styles
3
+ */
4
+
5
+ [data-style='minimal'] [data-switch-track] {
6
+ @apply bg-transparent border-surface-z4 border-2;
7
+ }
8
+
9
+ [data-style='minimal'] [data-switch-thumb] {
10
+ @apply bg-surface-z5;
11
+ }
12
+
13
+ [data-style='minimal'] [data-switch]:focus-visible [data-switch-track] {
14
+ @apply ring-2 ring-primary-z4 ring-offset-1;
15
+ }
16
+
17
+ /* On state */
18
+ [data-style='minimal'] [data-switch][aria-checked='true'] [data-switch-track] {
19
+ @apply border-primary-z4;
20
+ }
21
+
22
+ [data-style='minimal'] [data-switch][aria-checked='true'] [data-switch-thumb] {
23
+ @apply bg-primary-z4;
24
+ }
25
+
26
+ [data-style='minimal'] [data-switch-label] {
27
+ @apply text-surface-z7;
28
+ }