From 10402f7b04da906e90165b5a86e7d259a89b8718 Mon Sep 17 00:00:00 2001 From: mbeko Date: Sat, 23 Nov 2019 21:50:59 +0100 Subject: Remove background transparency of text field (#660) Remove background transparency of text field Set input field background to theme base colour: This avoids non-matching colours with some themes while it still fixes the rendering issue. fixes #653 --- main/data/theme.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'main') diff --git a/main/data/theme.css b/main/data/theme.css index 621cf66f..856e1b27 100644 --- a/main/data/theme.css +++ b/main/data/theme.css @@ -111,9 +111,10 @@ window.dino-main button.dino-chatinput-button:checked:backdrop { .dino-chatinput textview, .dino-chatinput textview text { - background-color: transparent; + background-color: @theme_base_color; } + /*Chat input warning*/ box.dino-input-warning frame border { @@ -129,6 +130,7 @@ box.dino-input-warning label { color: mix(@warning_color, @theme_fg_color, 0.5); } + /*Chat input error*/ box.dino-input-error frame border { -- cgit v1.2.3-54-g00ecf