Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/phui/calendar/phui-calendar.css
12241 views
1
/**
2
* @provides phui-calendar-css
3
*/
4
5
.phui-calendar-list {
6
/* When hovering over a day, this allows the hover color to peek through
7
the event name, but for event names to mostly remain readable. */
8
9
}
10
11
.application-search-view div.phui-calendar-box {
12
border-left: 1px solid {$thinblueborder};
13
border-right: 1px solid {$thinblueborder};
14
border-bottom: 1px solid {$lightblueborder};
15
border-radius: 0;
16
}
17
18
.phui-calendar-list a {
19
color: {$greytext};
20
}
21
22
.phui-calendar-list .event-cancelled .phui-calendar-list-title {
23
text-decoration: line-through;
24
}
25
26
.phui-calendar-viewer-invited a {
27
color: {$green};
28
}
29
30
.phui-calendar-red a {
31
color: {$red};
32
}
33
34
.phui-calendar-orange a {
35
color: {$orange};
36
}
37
38
.phui-calendar-yellow a {
39
color: {$yellow};
40
}
41
42
.phui-calendar-green a {
43
color: {$green}
44
}
45
46
.phui-calendar-blue a {
47
color: {$blue};
48
}
49
50
.phui-calendar-sky a {
51
color: {$sky};
52
}
53
54
.phui-calendar-indigo a {
55
color: {$indigo};
56
}
57
58
.phui-calendar-violet a {
59
color: {$violet};
60
}
61
62
.phui-calendar-grey a {
63
color: {$lightgreytext};
64
}
65
66
.phui-calendar-bg-viewer-invited {
67
background-color: {$lightgreen};
68
}
69
70
.phui-calendar-bg-red {
71
background-color: {$lightred};
72
}
73
74
.phui-calendar-bg-orange {
75
background-color: {$lightorange};
76
}
77
78
.phui-calendar-bg-yellow {
79
background-color: {$lightyellow};
80
}
81
82
.phui-calendar-bg-green {
83
background-color: {$lightgreen};
84
}
85
86
.phui-calendar-bg-blue {
87
background-color: {$lightblue};
88
}
89
90
.phui-calendar-bg-sky {
91
background-color: {$lightsky};
92
}
93
94
.phui-calendar-bg-indigo {
95
background-color: {$lightindigo};
96
}
97
98
.phui-calendar-bg-violet {
99
background-color: {$lightviolet};
100
}
101
102
.phui-calendar-bg-grey {
103
background-color: {$darkgreybackground};
104
}
105
106
.phui-calendar-list-dot {
107
background-color: {$lightgreytext};
108
border-color: {$lightgreytext};
109
}
110
111
.phui-calendar-viewer-invited .phui-calendar-list-dot {
112
background-color: {$green};
113
border-color: {$green};
114
}
115
116
.phui-calendar-red .phui-calendar-list-dot {
117
background-color: {$red};
118
border-color: {$red};
119
}
120
121
.phui-calendar-orange .phui-calendar-list-dot {
122
background-color: {$orange};
123
border-color: {$orange};
124
}
125
126
.phui-calendar-yellow .phui-calendar-list-dot {
127
background-color: {$orange};
128
border-color: {$orange};
129
}
130
131
.phui-calendar-green .phui-calendar-list-dot {
132
background-color: {$green};
133
border-color: {$green};
134
}
135
136
.phui-calendar-blue .phui-calendar-list-dot {
137
background-color: {$blue};
138
border-color: {$blue};
139
}
140
141
.phui-calendar-sky .phui-calendar-list-dot {
142
background-color: {$sky};
143
border-color: {$sky};
144
}
145
146
.phui-calendar-indigo .phui-calendar-list-dot {
147
background-color: {$indigo};
148
border-color: {$indigo};
149
}
150
151
.phui-calendar-violet .phui-calendar-list-dot {
152
background-color: {$violet};
153
border-color: {$violet};
154
}
155
156
.phui-calendar-grey .phui-calendar-list-dot {
157
background-color: {$lightgreytext};
158
border-color: {$lightgreytext};
159
}
160
161