diff options
author | mbeko <mbeko@users.noreply.github.com> | 2019-11-23 21:50:59 +0100 |
---|---|---|
committer | fiaxh <fiaxh@users.noreply.github.com> | 2019-11-23 21:50:59 +0100 |
commit | 10402f7b04da906e90165b5a86e7d259a89b8718 (patch) | |
tree | 31e2ca7ba3a23696955731c9259e6001067d2e0e /main/data | |
parent | f9c69a204ebd7ecabd022f6f6e9a7131a1ecadae (diff) | |
download | dino-10402f7b04da906e90165b5a86e7d259a89b8718.tar.gz dino-10402f7b04da906e90165b5a86e7d259a89b8718.zip |
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
Diffstat (limited to 'main/data')
-rw-r--r-- | main/data/theme.css | 4 |
1 files changed, 3 insertions, 1 deletions
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 { |