From fc38de4428e4c872ea1dcf4a593c93bd32ec5ad4 Mon Sep 17 00:00:00 2001 From: Vaibhaw Kumar Date: Thu, 29 Jan 2026 11:53:44 +0530 Subject: [PATCH] Bug Fixed: Unclear select Box for callouts when creating a Blog --- app/(core)/styles/theory.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/(core)/styles/theory.css b/app/(core)/styles/theory.css index b0c947d..0fff1d3 100644 --- a/app/(core)/styles/theory.css +++ b/app/(core)/styles/theory.css @@ -1072,6 +1072,17 @@ box-shadow: 0 0 0 2px var(--focus-ring); } +/* Fix: Dark mode dropdown visibility for callout type selector */ +.callout-type-selector option { + background-color: #1a1a1a; + color: #ffffff; +} + +[data-theme="light"] .callout-type-selector option { + background-color: #ffffff; + color: #333333; +} + /* 10. LIST EDITING */ .theory-list-container { margin: 12px 0;