From b77a7d585cf6cf2420dd770e42ba5b1e08a4e12c Mon Sep 17 00:00:00 2001 From: schererleander Date: Mon, 11 Mar 2024 17:12:20 +0100 Subject: initial commit --- .themes/FlatColor/gtk-3.20/widgets/entry.css | 44 ++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .themes/FlatColor/gtk-3.20/widgets/entry.css (limited to '.themes/FlatColor/gtk-3.20/widgets/entry.css') diff --git a/.themes/FlatColor/gtk-3.20/widgets/entry.css b/.themes/FlatColor/gtk-3.20/widgets/entry.css new file mode 100644 index 0000000..110dc16 --- /dev/null +++ b/.themes/FlatColor/gtk-3.20/widgets/entry.css @@ -0,0 +1,44 @@ +/********* + * entry * + *********/ +entry { + padding: 6px 8px; + margin: 2px; + border-width: 2px; + border-style: solid; + border-color: @base_color; + border-radius: 3px; + background-color: @base_color; + background-image: none; + color: @text_color; + box-shadow: 0 2.5px 4.5px @shadow; +} + +entry:active, +entry:focus { + box-shadow: 0 1px 1px @shadow , + inset 0 -2px @selected_bg_color; + transition: box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); +} + +entry:selected, +entry:selected:focus, +entry selection { + background-color: @selected_bg_color; + color: @selected_fg_color; +} + +entry:disabled { + background-color: shade(@bg_color, 1.04); + border-color: shade(@bg_color, 1.04); + background-image: none; + color: @text_color_disabled +} + +entry.progressbar { + border-width: 0; + border-radius: 0; + background-color: @selected_bg_color; + background-image: none; + color: @selected_fg_color; +} -- cgit v1.3.1