-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
allday.css
108 lines (93 loc) · 1.75 KB
/
allday.css
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
.panel-title {
display: table;
float: left;
height: 100%;
padding-right: 5px;
}
.panel-title .left-content {
display: table-cell;
vertical-align: middle;
text-align: right;
font-size: 11px;
}
.panel-grid-wrapper {
position: relative;
overflow-y: hidden;
}
.panel .panel-title,
.panel .panel-grid-wrapper {
height: 100%;
}
.allday-panel {
position: relative;
height: 100%;
overflow-y: hidden;
}
.allday-panel .grid-selection {
position: absolute;
right: 10px;
z-index: 1;
top: 0;
}
.panel-grid {
height: 100%;
position: absolute;
}
.panel-event-wrapper {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
overflow-y: scroll;
}
.panel-event-wrapper .weekday-event-block {
position: absolute;
}
.panel-event-wrapper .weekday-event {
position: relative;
margin: 0 10px 0 1px;
cursor: pointer;
border-left-style: solid;
border-left-width: 3px;
height: 18px;
border-radius: 0;
color: #9a1313;
background-color: rgba(218, 27, 27, 0.2);
border-color: #da1b1b;
}
.panel-event-wrapper .weekday-exceed-right .weekday-event {
margin-right: 0;
}
.panel-event {
position: absolute;
border: 1px solid #333;
}
.weekday-exceed-in-week {
position: absolute;
right: 5px;
bottom: 5px;
z-index: 1;
margin-right: 5px;
font-size: 12px;
line-height: 14px;
cursor: pointer;
padding: 1px 5px;
background-color: #fff;
border: 1px solid #ddd;
color: #000;
}
.collapse-btn-icon {
display: inline-block;
vertical-align: middle;
margin: -1px -14px 0 -4px;
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-bottom: 5px solid #4f5959;
}
.day-view .panel:not(.time),
.week-view .panel:not(.time) {
overflow-y: scroll;
}