aboutsummaryrefslogtreecommitdiff
path: root/.themes/FlatColor/gtk-3.20/widgets/entry.css
diff options
context:
space:
mode:
Diffstat (limited to '.themes/FlatColor/gtk-3.20/widgets/entry.css')
-rw-r--r--.themes/FlatColor/gtk-3.20/widgets/entry.css44
1 files changed, 44 insertions, 0 deletions
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;
+}