2021-03-07 22:15:14 +08:00
|
|
|
#ccn-calendar-calendarBody > div:nth-child(n+2) > div {
|
2021-01-16 22:15:10 +08:00
|
|
|
border-top: 0 solid black;
|
|
|
|
|
border-left: 0 solid black;
|
|
|
|
|
border-right: 1px solid black;
|
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
|
|
|
|
|
|
padding: 0.75em;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 22:15:14 +08:00
|
|
|
#ccn-calendar-calendarBody > div:nth-child(n+2) > div:nth-child(1) {
|
2021-01-16 22:15:10 +08:00
|
|
|
border-left: 1px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 22:15:14 +08:00
|
|
|
#ccn-calendar-calendarBody > div:nth-child(2) > div {
|
2021-01-16 22:15:10 +08:00
|
|
|
border-top: 1px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 22:15:14 +08:00
|
|
|
#ccn-calendar-calendarBody > div > div {
|
2021-01-16 22:15:10 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-basis: 0;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 15:41:32 +08:00
|
|
|
#ccn-calendar-calendarBody > div > div[isCurrentMonth=false] {
|
|
|
|
|
background: #d0d0d0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 22:15:14 +08:00
|
|
|
#ccn-calendar-calendarBody > div {
|
2021-01-16 22:15:10 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-03-07 22:15:14 +08:00
|
|
|
div.calendarItem-eventBox {
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
border-radius: 2px;
|
2021-03-08 15:41:32 +08:00
|
|
|
margin-top: 0.2rem;
|
2021-03-07 22:15:14 +08:00
|
|
|
height: 0.75rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.calendarItem-eventBox[enableDisplay=true] {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
div.calendarItem-eventBox[enableDisplay=false] {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-16 22:15:10 +08:00
|
|
|
|
|
|
|
|
div.schedule-day {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.schedule-day-words {
|
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.schedule-event-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 21:01:51 +08:00
|
|
|
div.schedule-event-outter {
|
2021-01-16 22:15:10 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
|
|
margin-bottom: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 21:01:51 +08:00
|
|
|
div.schedule-event-inner {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
|
|
padding: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-16 22:15:10 +08:00
|
|
|
div.schedule-event-words {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-basis: 0;
|
|
|
|
|
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.schedule-event-icon {
|
|
|
|
|
margin-left: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 22:15:14 +08:00
|
|
|
div.schedule-event-color {
|
|
|
|
|
width: 0.75rem;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-07 21:12:56 +08:00
|
|
|
#ccn-calendar-scheduleList div.schedule-day:nth-child(n+2) {
|
2021-01-16 22:15:10 +08:00
|
|
|
border-top: 1px solid rgba(219,219,219,.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
div.collection-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
|
|
padding: 1.25rem;
|
|
|
|
|
margin-bottom: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.collection-item-words {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-basis: 0;
|
|
|
|
|
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.collection-item-icon {
|
|
|
|
|
margin-left: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
div.control-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.control-list > * {
|
|
|
|
|
margin-right: 0.75rem;
|
|
|
|
|
margin-bottom: 0.75rem;
|
2021-02-07 21:12:56 +08:00
|
|
|
margin-left: 0 !important;
|
2021-01-16 22:15:10 +08:00
|
|
|
}
|