From 853186d9b0d27d6ed293c07d84fb0a7eb8f09491 Mon Sep 17 00:00:00 2001 From: tholley7 Date: Tue, 14 May 2024 14:37:57 -0400 Subject: [PATCH] Fix modal field/dropdown styles --- themes/dracula/dracula-theme.css | 17 +++++++++++++---- themes/dracula/dracula-theme.yml | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/themes/dracula/dracula-theme.css b/themes/dracula/dracula-theme.css index 6367700..0b8cb78 100644 --- a/themes/dracula/dracula-theme.css +++ b/themes/dracula/dracula-theme.css @@ -2508,6 +2508,10 @@ a.badge-dark:focus,a.badge-dark.focus { font-weight: 600; } +/* Fix modal text-input and dropdown fills */ +.modal-content .input-control { + background-color: var(--alt_bg); +} @@ -4101,12 +4105,17 @@ button.collapse-button.btn-primary:not(:disabled):not(.disabled):hover,button.co /* ==================<< BULK UPDATE >>================== */ .bulk-update-text-input button { - background-color: var(--selection); - color: var(--misty_white); + background-color: transparent; + color: var(--overcast_white); } -.bulk-update-text-input button:hover,.bulk-update-text-input button:focus,.bulk-update-text-input button:active,.bulk-update-text-input button:not(:disabled):not(.disabled):active,.bulk-update-text-input button:not(:disabled):not(.disabled):active:focus { - background-color: var(--selection); +.bulk-update-text-input button:hover, +.bulk-update-text-input button:focus, +.bulk-update-text-input button:active, +.bulk-update-text-input button:not(:disabled):not(.disabled):active, +.bulk-update-text-input button:not(:disabled):not(.disabled):active:focus { + background-color: transparent; + color: var(--foreground); } diff --git a/themes/dracula/dracula-theme.yml b/themes/dracula/dracula-theme.yml index 9341c31..82ef552 100644 --- a/themes/dracula/dracula-theme.yml +++ b/themes/dracula/dracula-theme.yml @@ -1,6 +1,6 @@ name: Dracula Theme description: A dark theme for Stash based on the popular Dracula theme. -version: 1.2.4 +version: 1.3 ui: css: - dracula-theme.css