-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMMM-Todoist-Multi.css
More file actions
108 lines (92 loc) · 1.69 KB
/
MMM-Todoist-Multi.css
File metadata and controls
108 lines (92 loc) · 1.69 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.task-table {
width: 100%;
text-align: center;
border-collapse: collapse;
}
.task-table thead th {
text-align: center;
}
.col-content {
text-align: left;
}
.task-table td {
padding: 2px 5px 2px 5px;
}
.header-icon-countdown::before {
font: var(--fa-font-solid);
content: "\f254";
}
.header-icon-content::before {
font: var(--fa-font-solid);
content: "\f04b";
}
.header-icon-duedate::before {
font: var(--fa-font-solid);
content: "\f274";
}
.header-icon-priority::before {
font: var(--fa-font-solid);
content: "\f06a";
}
.header-icon-assignee::before {
font: var(--fa-font-solid);
content: "\f007";
}
.header-icon-avatar::before {
font: var(--fa-font-solid);
content: "\f007";
}
.header-icon-labels::before {
font: var(--fa-font-solid);
content: "\f02b";
}
.header-icon-project::before {
font: var(--fa-font-solid);
content: "\f03a";
}
.nowrapping {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.subtask::before {
font: var(--fa-font-solid);
content: "\f101";
padding-right: 5px;
opacity: 0.6;
}
.task-label-bubble {
background-color: rgba(255, 255, 255, 0.2); /* 80% transparent */
border-radius: 15px;
padding: 2px 6px 2px 6px;
}
.task-project-bubble {
text-align: center;
border-style: solid;
border-width: 1px;
border-radius: 10px;
padding: 0 6px 0 6px;
}
.overdue {
color: firebrick;
font-size: smaller;
}
.today {
color: chartreuse;
}
.tomorrow {
color: green;
font-size: smaller;
}
.soon {
color: forestgreen;
}
.later {
color: gray;
}
/*font awesome requires this to make icons render reliably */
.icon::before {
display: inline-block;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}