1
mayisheng
2022-08-15 81f54040c2cb65537c6c6e1db8358a39a57dea0d
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
.calender-box {
    .fc-toolbar-chunk {
        button {
            background: #2196f3;
            border-color: #969696;
            box-shadow: none !important;
        }
    }
 
    .fc .fc-button-primary:disabled {
        background: #969696;
        border-color: #969696;
    }
 
    .fc .fc-button-primary:hover {
        background: #116cb2 !important;
        border-color: #969696 !important;
    }
 
    .fc .fc-button-primary:not(:disabled):active,
    .fc .fc-button-primary:not(:disabled).fc-button-active {
        background: #116cb2 !important;
        border-color: #969696 !important;
    }
 
    .fc-event-title {
        text-overflow: ellipsis !important;
    }
 
}
 
 
 
.red-all-day {
    background: rgb(255, 0, 0);
    color: white;
}
 
.green-all-day {
    background: rgb(69, 255, 69);
    color: white;
}
 
.yellow-all-day {
    background: rgb(173, 69, 0);
    color: white;
}
 
.orange-all-day {
    background: rgb(255, 175, 25);
    color: white;
}
 
.blue-all-day {
    background: rgb(9, 157, 255);
    color: white;
}
 
.pink-all-day {
    background: rgb(170, 42, 63);
    color: white;
}