mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-04 23:07:45 +00:00
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
This commit is contained in:
parent
f9c69a204e
commit
10402f7b04
1 changed files with 3 additions and 1 deletions
|
@ -111,9 +111,10 @@ window.dino-main button.dino-chatinput-button:checked:backdrop {
|
||||||
|
|
||||||
|
|
||||||
.dino-chatinput textview, .dino-chatinput textview text {
|
.dino-chatinput textview, .dino-chatinput textview text {
|
||||||
background-color: transparent;
|
background-color: @theme_base_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*Chat input warning*/
|
/*Chat input warning*/
|
||||||
|
|
||||||
box.dino-input-warning frame border {
|
box.dino-input-warning frame border {
|
||||||
|
@ -129,6 +130,7 @@ box.dino-input-warning label {
|
||||||
color: mix(@warning_color, @theme_fg_color, 0.5);
|
color: mix(@warning_color, @theme_fg_color, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*Chat input error*/
|
/*Chat input error*/
|
||||||
|
|
||||||
box.dino-input-error frame border {
|
box.dino-input-error frame border {
|
||||||
|
|
Loading…
Reference in a new issue