hazo_ui 2.4.4 → 2.5.0
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 +110 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -15
- package/dist/index.d.ts +33 -15
- package/dist/index.js +110 -27
- package/dist/index.js.map +1 -1
- package/dist/styles.css +21 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -84,14 +84,33 @@
|
|
|
84
84
|
.cls_command_dropdown .cls_command_item:hover,
|
|
85
85
|
.cls_command_popover .cls_command_item.bg-accent,
|
|
86
86
|
.cls_command_dropdown .cls_command_item.bg-accent {
|
|
87
|
-
background-color: var(--accent, #f1f5f9);
|
|
87
|
+
background-color: var(--accent, #f1f5f9) !important;
|
|
88
|
+
color: var(--accent-foreground, #0f172a) !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Ensure nested text elements are visible when parent is selected */
|
|
92
|
+
.cls_command_popover .cls_command_item.bg-accent *,
|
|
93
|
+
.cls_command_dropdown .cls_command_item.bg-accent * {
|
|
94
|
+
color: inherit;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/* Description text in selected items - slightly muted but still visible */
|
|
98
|
+
.cls_command_popover .cls_command_item.bg-accent .text-muted-foreground,
|
|
99
|
+
.cls_command_dropdown .cls_command_item.bg-accent .text-muted-foreground {
|
|
88
100
|
color: var(--accent-foreground, #0f172a);
|
|
101
|
+
opacity: 0.7;
|
|
89
102
|
}
|
|
90
103
|
|
|
91
104
|
.dark .cls_command_popover .cls_command_item:hover,
|
|
92
105
|
.dark .cls_command_dropdown .cls_command_item:hover,
|
|
93
106
|
.dark .cls_command_popover .cls_command_item.bg-accent,
|
|
94
107
|
.dark .cls_command_dropdown .cls_command_item.bg-accent {
|
|
95
|
-
background-color: var(--accent, #334155);
|
|
108
|
+
background-color: var(--accent, #334155) !important;
|
|
109
|
+
color: var(--accent-foreground, #f8fafc) !important;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.dark .cls_command_popover .cls_command_item.bg-accent .text-muted-foreground,
|
|
113
|
+
.dark .cls_command_dropdown .cls_command_item.bg-accent .text-muted-foreground {
|
|
96
114
|
color: var(--accent-foreground, #f8fafc);
|
|
115
|
+
opacity: 0.7;
|
|
97
116
|
}
|