White color and frame used for backdrop non-editable GtkEntry widgets
This issue is created to disciple the discussion about CSS from the original merge request (!579 (merged))
Currently, "non-editable GtkEntry
widgets are drawn in a weird way by some themes, when the containing window does not have focus:
Themes supporting "non-editable GtkEntry
:
- Adwaita
- Orchis
- ...
Themes not supporting "non-editable GtkEntry
:
- Greybird
- Numix
- ...
Something CSS like this fixes the bad look:
entry:backdrop.flat { background-color: rgba(0,0,0,0); border-color: transparent; }
or possibly rather this one:
entry:backdrop.flat { border: none; box-shadow: none; padding: 0; color: inherit; background-color: inherit; }
Since it is not a Thunar specific issue, but rather an issue for each window which uses non-editable GtkEntry
widgets, it for sure makes sense to fix the broken themes.
To be discussed, if it as well should be fixed within Thunar itself, until all themes do have a fix.