From 81abb48afd309e56c90ca710eee6fc687726ba10 Mon Sep 17 00:00:00 2001 From: Aleix Soler Date: Fri, 4 Apr 2025 15:37:26 +0200 Subject: [PATCH] fix: ignore the obsidian vanilla dropdown style --- styles.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index f597be5..823071d 100644 --- a/styles.css +++ b/styles.css @@ -87,13 +87,14 @@ padding: var(--input-padding); border: var(--input-border-width) solid var(--background-modifier-border); border-radius: var(--input-radius); - background: var(--background-secondary); /* Ensure clean background */ + background: var(--background-primary); /* Base background */ + background-image: none !important; /* Override theme's SVG */ color: var(--text-normal); cursor: pointer; outline: none; transition: all 0.2s ease; - appearance: auto; /* Restore native dropdown styling */ - min-width: 120px; /* Prevent collapse */ + appearance: auto; + min-width: 120px; } .note-status-select:hover {