-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgtk-entry.css
76 lines (55 loc) · 1.57 KB
/
gtk-entry.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* Entry textbox */
entry {
padding: 3px;
border: 1px solid;
border-color: @dark_shadow;
border-bottom: 1px solid @light_shadow;
border-right: 1px solid @light_shadow;
border-radius: 0px;
box-shadow: 1px 1px @borders inset, -1px -1px @theme_bg_color inset;
color: @text_color;
caret-color: @text_color;
background-color: @theme_base_color; }
entry:selected, entry:selected:focus, entry selection, entry selection:focus {
color: @theme_selected_fg_color;
background-color: @theme_selected_bg_color; }
entry:disabled {
background-color: @bg_color;
color: @disabled_fg_color; }
entry.read-only {
background-color: @base_color; }
entry > image.left {
padding-right: 5px; }
entry > image.right {
padding-left: 5px; }
/* Combo box entry */
combobox entry {
margin-top: 1px;
margin-bottom: 1px;
box-shadow: none;
background-color: transparent;
border: none; }
combobox entry:disabled {
text-shadow: 1px 1px @light_shadow;
margin-top: 1px;
margin-bottom: 1px;
box-shadow: none;
background-color: transparent;
border: none; }
/* Spin button entry */
spinbutton entry:disabled,
spinbutton entry:disabled:backdrop {
background-color: transparent;
box-shadow: none;
border: none;
color: @disabled_fg_color; }
spinbutton.horizontal entry,
spinbutton.vertical entry {
background-color:transparent;
border: none;
box-shadow: none; }
/* Hamburger menu entry */
popover entry, popover scrolledwindow {
box-shadow: none;
background-color: @base_color;
border: 1px solid @dark_shadow; }