-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMMM-CalendarExtTimeline.css
More file actions
114 lines (96 loc) · 1.88 KB
/
Copy pathMMM-CalendarExtTimeline.css
File metadata and controls
114 lines (96 loc) · 1.88 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
109
110
111
112
113
114
.timelineModule {
line-height:1em;
}
.timelineModule *{
box-sizing:border-box;
}
.timelineModule .current_timeline {
width:0px;
height:24px;
position:absolute;
border-left:2px solid #F00;
top:10px;
}
.timelineModule .holder {
position:relative;
width:100%;
height:100%;
}
.timelineModule .eventPositionLine {
position:relative;
width:100%;
height:24px;
line-height:24px;
margin:1px 0;
}
.timelineModule .event {
position:absolute;
height:24px;
font-size:14px;
line-height:24px;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
padding-left:6px;
padding-right:6px;
text-align:left;
}
.timelineModule .event.startHere {
border-left:3px solid currentColor;
border-top-left-radius:12px;
border-bottom-left-radius:12px;
}
.timelineModule .event.endHere {
border-right:3px solid currentColor;
border-top-right-radius:12px;
border-bottom-right-radius:12px;
}
.timelineModule .event.startHere.endHere {
border-left:3px solid currentColor;
border-right:3px solid currentColor;
}
.timelineModule .timeCol td {
padding:0;
margin:0;
text-align:left;
padding-left:2px;
border-left:1px solid #999;
}
.timelineModule .timeCol table {
position:relative;
height:24px;
overflow: hidden;
}
.timelineModule .timeCol p {
padding:0;
margin:0;
}
.timelineModule th.timeCol {
width:90%;
font-weight:normal;
font-size:initial;
border-bottom:1px solid #999;
position:relative;
height:24px;
}
.timelineModule th.titleCol {
max-width:10%;
font-weight:normal;
font-size:initial;
border-bottom:1px solid #999;
height:24px;
}
.timelineModule td.schedules {
width:90%;
font-weight:normal;
font-size:initial;
border-bottom:1px solid #999;
position:relative;
}
.timelineModule td.calendar {
max-width:10%;
font-weight:normal;
font-size:initial;
border-bottom:1px solid #999;
background-color:#333;
}