-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMMM-ClickUPv2.css
More file actions
107 lines (89 loc) · 1.5 KB
/
MMM-ClickUPv2.css
File metadata and controls
107 lines (89 loc) · 1.5 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
/*#region Text Alignment */
.alignLeft {
text-align: left;
}
.alignRight {
text-align: right;
}
/*#endregion*/
/*#region Spacer Setup */
.spacer {
width: 3px;
}
.subSpacer {
width: 1px;
}
/*#endregion*/
/*#region Text Setup */
.bgText {
color: rgb(162, 162, 162);
mix-blend-mode: difference;
}
/*#endregion*/
/*#region Priority & Status Setup */
.priority, .statusNoText {
width: 3px;
border-right: 3px;
margin-right: 3px;
}
/*#endregion*/
/*#region Due Date Setup */
.dueDate {
width: 1%;
white-space: nowrap;
padding: 0 0 0 10px;
}
.overdue {
text-decoration: underline #ac0000;
}
.today {
text-decoration: underline #03a05c;
}
.tomorrow {
text-decoration: underline #166cec;
}
/*#endregion*/
/*#region StrikeThrough and Disappear Setup */
td {
position: relative;
}
tr.strikethrough td:before {
content: " ";
position: absolute;
top: 50%;
left: 0;
border-bottom: 1px solid #ffffff;
width: 100%;
}
/*#endregion*/
/*#region Table Setup */
.divTable {
display: table;
width: 100%;
border-collapse: collapse;
empty-cells: show;
}
table, th, td {
border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.divTableRow {
width: 100%;
}
.divTableCell, .divTableHead {
display: table-cell;
vertical-align: middle;
}
.divTableHeading {
background-color: #EEE;
display: table-header-group;
font-weight: bold;
}
.divTableFoot {
background-color: #EEE;
display: table-footer-group;
font-weight: bold;
}
.divTableBody {
display: table-row-group;
}
/*#endregion*/