dotfiles/gtk/widgets/entry.css

41 lines
810 B
CSS
Raw Normal View History

2023-10-05 02:14:46 -04:00
/*********
* entry *
*********/
entry {
padding: 6px 8px;
border-width: 1px;
border-style: solid;
border-color: transparent;
border-radius: 0;
background-color: @base_color;
background-image: none;
color: @text_color;
}
entry:active,
entry:focus {
box-shadow: inset 0px 0px @selected_bg_color;
border-color: @selected_bg_color;
}
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);
background-image: none;
color: mix(@text_color, @base_color, 0.4);
}
entry.progressbar {
border-width: 0;
border-radius: 0;
background-color: @selected_bg_color;
background-image: none;
color: @selected_fg_color;
}