hazo_ui 2.4.2 → 2.4.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/dist/index.cjs +48 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +48 -19
- package/dist/index.js.map +1 -1
- package/dist/styles.css +46 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -49,3 +49,49 @@
|
|
|
49
49
|
--input: 217.2 32.6% 17.5%;
|
|
50
50
|
--ring: 212.7 26.8% 83.9%;
|
|
51
51
|
}
|
|
52
|
+
|
|
53
|
+
/* Command Dropdown/Popover Styles */
|
|
54
|
+
/* These styles ensure proper backgrounds in command dropdowns regardless of CSS variable format */
|
|
55
|
+
.cls_command_popover,
|
|
56
|
+
.cls_command_dropdown,
|
|
57
|
+
.cls_textarea_command_dropdown,
|
|
58
|
+
.cls_edit_popover {
|
|
59
|
+
background-color: #ffffff;
|
|
60
|
+
background-color: var(--popover, #ffffff);
|
|
61
|
+
color: var(--popover-foreground, #0f172a);
|
|
62
|
+
border: 1px solid var(--border, #e2e8f0);
|
|
63
|
+
border-radius: var(--radius, 0.5rem);
|
|
64
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.dark .cls_command_popover,
|
|
68
|
+
.dark .cls_command_dropdown,
|
|
69
|
+
.dark .cls_textarea_command_dropdown,
|
|
70
|
+
.dark .cls_edit_popover {
|
|
71
|
+
background-color: #1e293b;
|
|
72
|
+
background-color: var(--popover, #1e293b);
|
|
73
|
+
color: var(--popover-foreground, #f8fafc);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Command items inherit background from parent */
|
|
77
|
+
.cls_command_popover .cls_command_item,
|
|
78
|
+
.cls_command_dropdown .cls_command_item {
|
|
79
|
+
background-color: inherit;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Command item selected and hover states */
|
|
83
|
+
.cls_command_popover .cls_command_item:hover,
|
|
84
|
+
.cls_command_dropdown .cls_command_item:hover,
|
|
85
|
+
.cls_command_popover .cls_command_item.bg-accent,
|
|
86
|
+
.cls_command_dropdown .cls_command_item.bg-accent {
|
|
87
|
+
background-color: var(--accent, #f1f5f9);
|
|
88
|
+
color: var(--accent-foreground, #0f172a);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.dark .cls_command_popover .cls_command_item:hover,
|
|
92
|
+
.dark .cls_command_dropdown .cls_command_item:hover,
|
|
93
|
+
.dark .cls_command_popover .cls_command_item.bg-accent,
|
|
94
|
+
.dark .cls_command_dropdown .cls_command_item.bg-accent {
|
|
95
|
+
background-color: var(--accent, #334155);
|
|
96
|
+
color: var(--accent-foreground, #f8fafc);
|
|
97
|
+
}
|