forked from projecthamster/hamster-shell-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
86 lines (72 loc) · 1.58 KB
/
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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
/* Same style as #searchEntry on theme/gnome-shell.css */
/* snatched from todo.txt extension */
#searchEntry {
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: white;
caret-color: rgb(64, 64, 64);
caret-size: 1px;
transition-duration: 300ms;
box-shadow: inset 0px 2px 4px rgba(0,0,0,0.6);
}
#searchEntry:indeterminate {
color: rgb(128, 128, 128) !important;
font-weight: normal !important;
}
#searchEntry:focus,
#searchEntry:hover {
border: 2px solid rgb(136,138,133);
background-gradient-start: rgb(200,200,200);
background-gradient-end: white;
background-gradient-direction: vertical;
color: rgb(64, 64, 64);
font-weight: bold;
}
#searchEntry:hover {
transition-duration: 300ms;
}
#searchEntry:focus {
transition-duration: 0ms;
}
.hamster-box {
spacing: 15px;
min-width: 25em;
}
.hamster-box-label {
padding-top: 1em;
text-align: center;
}
.hamster-activities {
border: 1px solid #333;
}
.hamster-scrollbox {
max-height: 200px;
overflow-x: none;
overflow-y: auto;
}
.cell-label {
padding: 3px;
padding-right: 15px;
color: #aaa;
}
.summary-label {
color: #aaa;
text-align: right;
}
.cell-button {
padding: 3px 5px;
}
.clickable:hover {
background-color: #4c4c4c;
}
.clickable:hover .cell-label {
color: #fff;
}
.panel-box {
spacing: 5px;
}