Compare commits

..

9 Commits

Author SHA1 Message Date
4fd363aa43 Fix some calendar and tool name/url issues 2022-11-07 16:35:34 -05:00
0eb7df61a8 Display event times 2022-10-22 01:08:14 -04:00
c89dad7c2c Add links to google calendar/iCal 2022-10-22 01:08:14 -04:00
473fe22fb1 Replicate the structure of event content in week view
Keeps the classes/formatting
2022-10-14 11:46:17 -04:00
3a221a0e93 Only periodically refresh in wall-display mode 2022-10-14 11:46:17 -04:00
730776620a Pre-define all resources, with shops as parents of tools 2022-10-14 11:46:17 -04:00
000cd56039 Only specify devServer options for first webpack config
This avoids `[webpack-dev-middleware] ConcurrentCompilationError`
issues when running `webpack serve`. However, it prevents running the
dev server for just the `wall-display` config (as it no longer has the
`/calendar` proxy route defined.
2022-10-13 01:17:40 -04:00
1709b1d6a6 Show day (timeline) and week view in non-wall-display view 2022-10-13 01:17:40 -04:00
5c47f97ba9 Split out iPad-specific wall-display configuration 2022-10-13 01:15:47 -04:00

28
src/index.css Normal file
View File

@ -0,0 +1,28 @@
.fc .fc-toolbar.fc-header-toolbar {
/* Save some vertical space */
margin-bottom: 0;
/* iOS 8 Safari doesn't support flexbox */
text-align: center;
}
/* Fix rendering of now indicators on iOS 8 Safari */
.fc .fc-timegrid-now-indicator-container {
overflow: initial;
}
.fc .fc-timegrid-now-indicator-line {
border-color: rgba(255, 0, 0, 0.4);
border-top-width: 1px;
border-top-color: red;
border-bottom-width: 9px;
}
.fc-direction-ltr .fc-timegrid-now-indicator-arrow {
border-width: 10px 0 10px 11px;
margin-top: -10px;
}
.fc .fc-timegrid-slots {
/* Fix timegrid lines rendering over events on iOS 5.1.1 */
z-index: 0 !important;
}