zjf
2023-03-03 26e972196ed6046bcb7fb341be86241c8300fd2b
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#calendar {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}
 
#calendar /deep/ .fc-license-message {
  display: none !important;
}
 
#calendar /deep/ .fc-toolbar {
  padding-top: 1em;
 
  .fc-left {
    padding-left: 20px;
 
    .fc-button-group {
      .fc-button {
        text-shadow: none;
      }
 
      .fc-state-default {
        background: #f0f0f0;
        padding: 0 1.2em;
        border: 0;
        margin-right: 3px;
      }
 
      .fc-state-down {
        box-shadow: none;
        text-shadow: none;
      }
 
      .fc-state-active {
        background: #4D88FF;
        color: #fff;
      }
    }
 
    .fc-today-button {
      background: #fff;
      margin-right: 50px;
    }
  }
 
  .fc-center {
    margin-left: -277px;
 
    h2 {
      font-size: 20px;
      font-weight: normal;
      margin-top: 5px;
    }
 
    .fc-prevYear-button,
    .fc-prev-button,
    .fc-next-button,
    .fc-nextYear-button {
      background: none;
      border: 0;
      color: #aaa;
      outline: none;
      box-shadow: none;
    }
 
    .fc-button-group {
 
      .fc-prev-button .fc-icon-left-single-arrow:after,
      .fc-next-button .fc-icon-right-single-arrow:after {
        font-size: 160%;
        font-weight: none;
      }
    }
  }
}
 
#calendar /deep/ .fc-view-container {
  .fc-body {
    .fc-row {
      .fc-day {
        border-color: #e9e9e9;
      }
 
      .fc-bg {
 
        .fc-sat,
        .fc-sun {
          background: #fbfbfb;
        }
 
        .fc-today {
          background: none;
        }
      }
 
      .fc-content-skeleton {
        .fc-today {
          .fc-day-number {
            background: #4D88FF;
            border-radius: 50%;
            padding: 3px;
            color: #fff;
            min-width: 16px;
            text-align: center;
          }
        }
 
        .fc-day-grid-event {
          border: 0 !important;
          border-radius: 23px;
          margin-left: 5px;
          margin-right: 5px;
 
          .fc-content {
            color: #fff;
 
            .fc-time {
              display: none;
            }
 
            .fc-title {
              float: left;
              width: 100%;
              overflow: hidden;
              white-space: nowrap;
              text-overflow: ellipsis;
            }
          }
        }
      }
 
      .fc-day-number {
        margin: 5px;
      }
 
      .fc-day-grid-event {
        border-left: 2px solid #ff9668 !important;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 2px 15px;
      }
    }
  }
 
  .fc-body>tr>.fc-widget-content {
    border: 0;
  }
 
  .fc-head {
    .fc-head-container {
      border: 0;
      border-bottom: 1px solid #ddd;
    }
  }
}
 
#calendar /deep/ .fc-day-header {
  background: #f5f5f5;
  border-width: 0;
  font-weight: normal;
 
  span {
    height: 50px;
    line-height: 50px;
  }
}