72 lines
1.1 KiB
SCSS
72 lines
1.1 KiB
SCSS
|
|
.rbc-agenda-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1 0 0;
|
|
overflow: auto;
|
|
|
|
table {
|
|
width: 100%;
|
|
border: 1px solid $cell-border;
|
|
|
|
tbody > tr > td {
|
|
padding: 5px 10px;
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.rbc-agenda-time-cell {
|
|
padding-inline-start: 15px;
|
|
padding-inline-end: 15px;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
tbody > tr > td + td {
|
|
border-left: 1px solid $cell-border;
|
|
}
|
|
|
|
.rbc-rtl & {
|
|
tbody > tr > td + td {
|
|
border-left-width: 0;
|
|
border-right: 1px solid $cell-border;
|
|
}
|
|
}
|
|
|
|
tbody > tr + tr {
|
|
border-top: 1px solid $cell-border;
|
|
}
|
|
|
|
thead > tr > th {
|
|
padding: 3px 5px;
|
|
text-align: start;
|
|
border-bottom: 1px solid $cell-border;
|
|
|
|
.rbc-rtl & {
|
|
text-align: end;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.rbc-agenda-time-cell {
|
|
text-transform: lowercase;
|
|
|
|
.rbc-continues-after:after {
|
|
content: ' »'
|
|
}
|
|
.rbc-continues-prior:before {
|
|
content: '« '
|
|
}
|
|
}
|
|
|
|
.rbc-agenda-date-cell,
|
|
.rbc-agenda-time-cell {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
|
|
|
|
.rbc-agenda-event-cell {
|
|
width: 100%
|
|
}
|