@rokkit/themes 1.0.0-next.127 → 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.
@@ -0,0 +1,50 @@
1
+ /**
2
+ * UploadTarget - Rokkit Theme Styles
3
+ *
4
+ * Colors, drag-over highlight, hover/focus rings.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Drop Zone
9
+ ============================================================================= */
10
+
11
+ [data-style='rokkit'] [data-upload-target] {
12
+ @apply border-surface-z4 text-surface-z6;
13
+ }
14
+
15
+ [data-style='rokkit'] [data-upload-target]:hover:not([data-disabled]) {
16
+ @apply border-surface-z5 text-surface-z7 bg-surface-z2;
17
+ }
18
+
19
+ [data-style='rokkit'] [data-upload-target]:focus-visible:not([data-disabled]) {
20
+ @apply border-primary-z5 ring-primary-z3 ring-2;
21
+ }
22
+
23
+ /* Drag-over highlight */
24
+ [data-style='rokkit'] [data-upload-target][data-dragging] {
25
+ @apply border-primary-z5 bg-primary-z2 text-primary-z7;
26
+ }
27
+
28
+ /* =============================================================================
29
+ Upload Icon
30
+ ============================================================================= */
31
+
32
+ [data-style='rokkit'] [data-upload-target] [data-upload-icon] {
33
+ @apply text-surface-z5;
34
+ }
35
+
36
+ [data-style='rokkit'] [data-upload-target][data-dragging] [data-upload-icon] {
37
+ @apply text-primary-z6;
38
+ }
39
+
40
+ /* =============================================================================
41
+ Browse Button
42
+ ============================================================================= */
43
+
44
+ [data-style='rokkit'] [data-upload-target] [data-upload-button] {
45
+ @apply border-surface-z4 text-surface-z7;
46
+ }
47
+
48
+ [data-style='rokkit'] [data-upload-target] [data-upload-button]:hover:not(:disabled) {
49
+ @apply bg-surface-z3 text-surface-z9;
50
+ }