hazo_ui 2.4.4 → 2.4.5

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/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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hazo_ui",
3
- "version": "2.4.4",
3
+ "version": "2.4.5",
4
4
  "description": "Set of UI components for common interaction elements in a SaaS app",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",