mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-04 20:02:10 +02:00
Update
This commit is contained in:
44
home/system/theme/gtk/gtk-3.20/widgets/entry.css
Normal file
44
home/system/theme/gtk/gtk-3.20/widgets/entry.css
Normal file
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user