fix: improve Settings search results

Adds Window transparency to Settings search
Keeps Settings search group headers in normal case
This commit is contained in:
Bohdan Triapitsyn
2026-06-10 14:11:13 +03:00
parent c7a43bb8ec
commit 7a18e79bdb
3 changed files with 10 additions and 2 deletions
@@ -806,7 +806,7 @@ export const OpenChamberVisualSettings: React.FC<OpenChamberVisualSettingsProps>
</div>
{macVibrancySupported && (
<div className="flex flex-col gap-1.5 border-t border-border/40 pt-3">
<div data-settings-item="appearance.window-transparency" className="flex flex-col gap-1.5 border-t border-border/40 pt-3">
<div
className="group flex cursor-pointer items-start gap-2 py-0.5"
role="button"
@@ -962,7 +962,7 @@ export const SettingsView: React.FC<SettingsViewProps> = ({ onClose, forceMobile
let resultIndex = 0;
return groupedSettingsSearchResults.map((group) => (
<div key={group.page} className="space-y-0.5">
<div className="px-2 pb-0.5 pt-2 typography-micro font-medium uppercase tracking-wide text-muted-foreground/70">
<div className="px-2 pb-0.5 pt-2 typography-micro font-medium text-muted-foreground/70">
{group.pageTitle}
</div>
{group.results.map((result) => {