-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMMM-CalendarExtPlan.css
More file actions
104 lines (84 loc) · 1.62 KB
/
MMM-CalendarExtPlan.css
File metadata and controls
104 lines (84 loc) · 1.62 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
.CXP {
--cell-height: 60px;
--font-size: 14px;
--dayHeader-width: 100px;
}
.CXP .CellTable {
border:2px;
table-layout: fixed;
}
.CXP .CellTable * {
box-sizing: border-box;
}
.CXP .CellTable tr td {
font-size: var(--font-size);
line-height: 130%;
text-align: left;
overflow: hidden;
}
.CXP .CellTable tr th {
text-align:center;
color: White;
font-size: calc(var(--font-size) + 8px);
}
.CXP .CellTable tr th.day {
font-size: calc(var(--font-size) + 4px);
font-weight:bold;
color: White;
white-space: nowrap;
padding-left:10px;
}
.CXP .CellTable tr td .wrapper {
height: var(--cell-height);
padding:5px;
}
.CXP .CellTable .headerWidth {
width: var(--dayHeader-width);
}
.CXP .CellTable tr:nth-child(odd) {
background-color: rgba(66,66,66, 0.5)
}
.CXP .CellTable td:nth-child(even) {
background-color: rgba(66,66,66, 0.5)
}
.CXP .CellTable tr.weekday_6 {
background-color: rgba(0,0,127, 0.5)
}
.CXP .CellTable tr.weekday_7 {
background-color: rgba(127,0,0, 0.5)
}
.CXP .CellTable tr.today th {
color:#FF0;
}
.CXP .event {
overflow: hidden;
white-space: nowrap;
}
.CXP .event .eventIcon {
margin-right: 5px;
}
.CXP .event div {
display:inline-block;
}
.CXP .event .eventTime .start.startHere,
.CXP .event .eventTime .end.endHere {
display:inline-block;
margin-right: 5px;
}
.CXP .event .eventTime .end.endHere {
display:none;
}
.CXP .event .eventTime .start,
.CXP .event .eventTime .end {
display:none;
}
.CXP .event .eventTime .end::before {
content: " - "
}
.CXP .event .eventTime.fullday {
display:none;
}
.CXP .event .eventTitle {
font-weight:bold;
color: White;
}