blob: a9096b3ab152f5352782e73f9bda2ae25bff4746 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
@import url("resource:///org/gnome/todo/themes/_omniarea.css");
@import url("resource:///org/gnome/todo/themes/_taskrow.css");
@import url("resource:///org/gnome/todo/themes/_widgets.css");
tasklistview list:drop(active) {
border: none;
}
row.thumbnail {
border: solid 1px @borders;
box-shadow: 0px 0px 3px alpha(@borders, 0.8);
border-radius: 16px;
}
grid-item.thumbnail {
padding: 6px;
font-size: 10px;
}
grid-item image {
margin: 12px 24px;
font-size: 10px;
border: solid 1px @borders;
border-radius: 4px;
box-shadow: 0px 0px 4px alpha(@borders, 0.8);
}
grid-item {
background-color: transparent;
}
grid-item.light {
color: #000003;
}
grid-item.dark {
color: #eeeeec;
}
arrow-frame {
border: solid 1px;
border-bottom-width: 0px;
border-top-width: 0px;
background-color: @theme_bg_color;
border-color: @borders;
}
arrow-frame:dir(ltr) {
border-right-width: 0px;
}
arrow-frame:dir(rtl) {
border-left-width: 0px;
}
label.main-title {
font-size: 28px;
}
|