From 74b3ce7eb1a1d2a056471a27e9d029d4a58ecd9f Mon Sep 17 00:00:00 2001 From: Nils Maier Date: Fri, 11 Oct 2019 13:28:41 +0200 Subject: [PATCH] Dark mode: improve display of disabled menu items --- style/common.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style/common.css b/style/common.css index 3787fa3..415f860 100644 --- a/style/common.css +++ b/style/common.css @@ -606,6 +606,11 @@ ul.context-menu ul { background: var(--menu-bgcolor-hover); } +html.dark .context-menu-item.disabled, +html.dark .context-menu-item.disabled > * { + opacity: 0.7; +} + input { color: var(--general-input-color); background: var(--general-input-bgcolor);