Skip to content

Commit

Permalink
Fix modal field/dropdown styles
Browse files Browse the repository at this point in the history
  • Loading branch information
TylersApps committed May 14, 2024
1 parent 0ddd5af commit 853186d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions themes/dracula/dracula-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}



Expand Down Expand Up @@ -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);
}


Expand Down
2 changes: 1 addition & 1 deletion themes/dracula/dracula-theme.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 853186d

Please sign in to comment.