From 1852f4842f8d124c579764b125a6e694dc0d65f1 Mon Sep 17 00:00:00 2001 From: Sorin Davidoi Date: Sat, 22 Sep 2018 23:26:53 +0000 Subject: [PATCH] fix(scss/global): Inherit colors for input and textarea (#541) --- scss/global.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scss/global.scss b/scss/global.scss index 40e41f8..4153fa9 100644 --- a/scss/global.scss +++ b/scss/global.scss @@ -82,6 +82,12 @@ input { box-sizing: border-box; } +// Fixes gray/black background when using a dark GTK theme +input, textarea { + background: inherit; + color: inherit; +} + button, .button { font-size: 1.2em; background: var(--button-bg); @@ -205,4 +211,4 @@ textarea { margin: -0.1em 0; object-fit: contain; vertical-align: middle; -} \ No newline at end of file +}