aboutsummaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorKuuuube <61125188+Kuuuube@users.noreply.github.com>2024-06-20 14:32:20 -0400
committerGitHub <noreply@github.com>2024-06-20 18:32:20 +0000
commit332833e7403b0a3f123c4a2831125301ab8c7a77 (patch)
treefe0f710e9cf3101c71df93fb9465150e33b70d9b /ext
parentd2c930a94d6e445053bcb5e5bb629851165425fc (diff)
Use browser theme for loading on action popup (#1099)
Diffstat (limited to 'ext')
-rw-r--r--ext/css/action-popup.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/css/action-popup.css b/ext/css/action-popup.css
index db2e7f1e..4cf65076 100644
--- a/ext/css/action-popup.css
+++ b/ext/css/action-popup.css
@@ -532,3 +532,12 @@ select.profile-select {
overflow-wrap: break-word;
}
}
+
+/* Dark mode before themes are applied
+ DO NOT use this for normal theming */
+@media (prefers-color-scheme: dark) {
+ body:not([data-loaded=true]) {
+ color: #cccccc;
+ background-color: #1e1e1e;
+ }
+}