- updated dependencies - `@fortawesome/fontawesome-free` to 5.10.2 - `@fullcalendar/bootstrap` to 4.3.0 - `@fullcalendar/core` to 4.3.1 - `@fullcalendar/daygrid` to 4.3.0 - `@fullcalendar/interaction` to 4.3.0 - `@fullcalendar/timegrid` to 4.3.0 - `bootstrap-slider` to 10.6.2 - `flot` to 3.2.9 - `overlayscrollbars` to 1.9.1 - `raphael` to 2.3.0 - `select2` to 4.0.10 - `sweetalert2` to 8.16.3 - replaced dependencies - `jqvmap` with `jqvmap-novulnerability` (removes git requirement on `npm i`) - added new dependencies - `datatables.net-autofill-bs4` to 2.3.3 - `datatables.net-bs4` to 1.10.19 - `datatables.net-buttons-bs4` to 1.5.6 - `datatables.net-colreorder-bs4` to 1.5.1 - `datatables.net-fixedcolumns-bs4` to 3.2.6 - `datatables.net-fixedheader-bs4` to 3.1.5 - `datatables.net-keytable-bs4` to 2.5.0 - `datatables.net-responsive-bs4` to 2.2.3 - `datatables.net-rowgroup-bs4` to 1.1.0 - `datatables.net-rowreorder-bs4` to 1.2.5 - `datatables.net-scroller-bs4` to 2.0.0 - `datatables.net-select-bs4` to 1.3.0 - `jszip` to 3.2.2 - `pdfmake` to 0.1.58 - updated devDependencies - `@babel/cli` to 7.5.5 - `@babel/core` to 7.5.5 - `@babel/preset-env` to 7.5.5 - `css-loader` to 3.2.0 - `rollup"` to .20.2 - `terser` to 4.2.1 - removed old plugins - `morris`
79 lines
1.8 KiB
CSS
79 lines
1.8 KiB
CSS
/* DayGridView
|
|
--------------------------------------------------------------------------------------------------*/
|
|
/* day row structure */
|
|
.fc-dayGridWeek-view .fc-content-skeleton,
|
|
.fc-dayGridDay-view .fc-content-skeleton {
|
|
/* there may be week numbers in these views, so no padding-top */
|
|
padding-bottom: 1em;
|
|
/* ensure a space at bottom of cell for user selecting/clicking */
|
|
}
|
|
|
|
.fc-dayGrid-view .fc-body .fc-row {
|
|
min-height: 4em;
|
|
/* ensure that all rows are at least this tall */
|
|
}
|
|
|
|
/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
|
|
.fc-row.fc-rigid {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.fc-row.fc-rigid .fc-content-skeleton {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
/* week and day number styling */
|
|
.fc-day-top.fc-other-month {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.fc-dayGrid-view .fc-week-number,
|
|
.fc-dayGrid-view .fc-day-number {
|
|
padding: 2px;
|
|
}
|
|
|
|
.fc-dayGrid-view th.fc-week-number,
|
|
.fc-dayGrid-view th.fc-day-number {
|
|
padding: 0 2px;
|
|
/* column headers can't have as much v space */
|
|
}
|
|
|
|
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
|
|
float: right;
|
|
}
|
|
|
|
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
|
|
float: left;
|
|
}
|
|
|
|
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
|
|
float: left;
|
|
border-radius: 0 0 3px 0;
|
|
}
|
|
|
|
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
|
|
float: right;
|
|
border-radius: 0 0 0 3px;
|
|
}
|
|
|
|
.fc-dayGrid-view .fc-day-top .fc-week-number {
|
|
min-width: 1.5em;
|
|
text-align: center;
|
|
background-color: #f2f2f2;
|
|
color: #808080;
|
|
}
|
|
|
|
/* when week/day number have own column */
|
|
.fc-dayGrid-view td.fc-week-number {
|
|
text-align: center;
|
|
}
|
|
|
|
.fc-dayGrid-view td.fc-week-number > * {
|
|
/* work around the way we do column resizing and ensure a minimum width */
|
|
display: inline-block;
|
|
min-width: 1.25em;
|
|
}
|