diff options
| author | schererleander <leander@leander-scherer.de> | 2024-03-11 17:12:20 +0100 |
|---|---|---|
| committer | schererleander <leander@leander-scherer.de> | 2024-03-11 17:12:20 +0100 |
| commit | b77a7d585cf6cf2420dd770e42ba5b1e08a4e12c (patch) | |
| tree | 1e609feaf2356f80ea95cc0f61fc2ecddc875f6b /.themes/FlatColor/gtk-3.0/widgets/entry.css | |
| parent | be73020a8d6d0beefdedf6f2c2c1ffa3cc8a82b6 (diff) | |
initial commit
Diffstat (limited to '.themes/FlatColor/gtk-3.0/widgets/entry.css')
| -rw-r--r-- | .themes/FlatColor/gtk-3.0/widgets/entry.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/.themes/FlatColor/gtk-3.0/widgets/entry.css b/.themes/FlatColor/gtk-3.0/widgets/entry.css new file mode 100644 index 0000000..07e96ac --- /dev/null +++ b/.themes/FlatColor/gtk-3.0/widgets/entry.css @@ -0,0 +1,38 @@ +/********* + * entry * + *********/ +.entry { + padding: 6px 8px; + border-width: 1px; + border-style: solid; + border-color: transparent; + border-radius: 0; + background-color: @theme_base_color; + background-image: none; + color: @theme_text_color; +} + +.entry:active, +.entry:focus { + box-shadow: inset 4px 0 @theme_selected_bg_color; +} + +.entry:selected, +.entry:selected:focus { + background-color: @theme_selected_bg_color; + color: @theme_selected_fg_color; +} + +.entry:insensitive { + background-color: shade(@theme_bg_color, 1.04); + background-image: none; + color: mix(@theme_text_color, @theme_base_color, 0.4); +} + +.entry.progressbar { + border-width: 0; + border-radius: 0; + background-color: @theme_selected_bg_color; + background-image: none; + color: @theme_selected_fg_color; +} |
