blob: 2de4075ba652892ce78933c2c4beb722309122dd (
plain)
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
|
#taskwarrior-widget-container strong.warning {
color: orange;
}
#taskwarrior-widget-container strong.error {
color: red;
}
#taskwarrior-widget-container table {
border-collapse: collapse;
}
#taskwarrior-widget-container tr.header {
font-size: 8pt;
font-weight: bold;
}
#taskwarrior-widget-container th, td {
padding-bottom: 4px;
padding-left: 0px;
padding-right: 12px;
padding-top: 4px;
text-align: left;
}
#taskwarrior-widget-container th:last-of-type, td:last-of-type {
padding-right: 8px;
}
#taskwarrior-widget-container th.num, td.num {
text-align: right;
}
#taskwarrior-widget-container .star {
font-family: Symbola, sans-serif;
font-size: 8pt;
padding-left: 4px;
padding-right: 1px;
text-align: center;
}
#taskwarrior-widget-container tbody tr:nth-child(odd) {
background-color: rgba(255, 255, 255, 0.1);
}
|