forked from bsaleil/todolist-gnome-shell-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
executable file
·43 lines (37 loc) · 916 Bytes
/
stylesheet.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
.newTaskSection {
padding:0 12px;
}
.panelButtonWidth {
width:40px;
}
/* Same style as #searchEntry on theme/gnome-shell.css */
#newTaskEntry {
padding: 4px 12px;
border-radius: 17px;
color: rgb(128, 128, 128);
border: 2px solid rgba(245,245,245,0.2);
background-gradient-start: rgba(5,5,6,0.1);
background-gradient-end: rgba(254,254,254,0.1);
background-gradient-direction: vertical;
selected-color: black;
caret-color: rgb(128, 128, 128);
caret-size: 1px;
width: 250px;
transition-duration: 300;
box-shadow: inset 0px 2px 4px rgba(0,0,0,0.6);
}
#newTaskEntry:focus,
#newTaskEntry:hover {
border: 2px solid rgb(136,138,133);
background-gradient-start: rgb(200,200,200);
background-gradient-end: white;
background-gradient-direction: vertical;
}
#newTaskEntry:hover {
transition-duration: 300;
}
#newTaskEntry:focus {
color: rgb(64, 64, 64);
font-weight: bold;
transition-duration: 0;
}