blob: e3fa10775132a920d3659ac74254aaa6bbd68f68 (
plain)
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
|
@import url(../reindeer/legacy-styles.css);
.v-app {
background: #fff;
}
/** Customized phase colors*/
/**
* Green
*/
/* For month view */
.v-calendar .v-calendar-event-color1 {
color: #4f8324;
}
.v-calendar .v-calendar-event-color1-all-day {
background-color: #61c114;
}
/* For week/day view */
.v-calendar .v-calendar-event-color1 .v-calendar-event-caption {
color: #4f8324;
}
.v-calendar .v-calendar-event-color1 .v-calendar-event-content {
border-color: #61c114;
background-color: #daff70;
}
/**
* Blue
*/
/* For month view */
.v-calendar .v-calendar-event-color2 {
color: #1c4b8b;
}
.v-calendar .v-calendar-event-color2-all-day {
background-color: #0a56bc;
}
/* For week/day view */
.v-calendar .v-calendar-event-color2 .v-calendar-event-caption {
color: #1c4b8b;
}
.v-calendar .v-calendar-event-color2 .v-calendar-event-content {
border-color: #0a56bc;
background-color: #529bff;
}
/**
* Red
*/
/* For month view */
.v-calendar .v-calendar-event-color3 {
color: #831d1d;
}
.v-calendar .v-calendar-event-color3-all-day {
background-color: #bd1a1a;
}
/* For week/day view */
.v-calendar .v-calendar-event-color3 .v-calendar-event-caption {
color: #831d1d;
}
.v-calendar .v-calendar-event-color3 .v-calendar-event-content {
border-color: #bd1a1a;
background-color: #ff9d9d;
}
/**
* Orange
*/
/* For month view */
.v-calendar .v-calendar-event-color4 {
color: #8b5923;
}
.v-calendar .v-calendar-event-color4-all-day {
background-color: #cd6a00;
}
/* For week/day view */
.v-calendar .v-calendar-event-color4 .v-calendar-event-caption {
color: #8b5923;
}
.v-calendar .v-calendar-event-color4 .v-calendar-event-content {
border-color: #cd6a00;
background-color: #faa345;
}
/**
* Hide time in captions
*/
.v-calendar-event-hide-time .v-calendar-event-caption>span,
.v-calendar-event-hide-time .v-calendar-event-caption>br {
display: none;
}
|