mirror of
https://github.com/itflow-org/itflow
synced 2026-08-18 13:35:12 +00:00
Bump Fullcalendar from 6.1.20 to 7.0.0 amd convert existing code to comply with 7.0, also make calendar more printable
This commit is contained in:
321
plugins/fullcalendar/themes/classic/global.js
Normal file
321
plugins/fullcalendar/themes/classic/global.js
Normal file
@@ -0,0 +1,321 @@
|
||||
/*!
|
||||
FullCalendar (Vanilla JS) v7.0.0
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2026 Adam Shaw
|
||||
*/
|
||||
(function ({ H: joinClassNames, u, G: globalPlugins }) {
|
||||
|
||||
|
||||
// usually 11px font / 12px line-height
|
||||
const xxsTextClass = "fc-classic-vQz";
|
||||
// outline
|
||||
const outlineWidthClass = "fc-classic-0Bj";
|
||||
const outlineWidthFocusClass = "fc-classic-uqo";
|
||||
const outlineOffsetClass = "fc-classic-3Xj";
|
||||
const outlineInsetClass = "fc-classic-fFh";
|
||||
const primaryOutlineColorClass = "fc-classic-zIi";
|
||||
// neutral buttons
|
||||
const strongSolidPressableClass = "fc-classic-BaR";
|
||||
const mutedHoverClass = "fc-classic-4yP";
|
||||
const mutedHoverPressableClass = `${mutedHoverClass} fc-classic-tCP fc-classic-8gz`;
|
||||
const faintHoverClass = "fc-classic-Ubk";
|
||||
const faintHoverPressableClass = `${faintHoverClass} fc-classic-OIx fc-classic-28F`;
|
||||
const buttonIconClass = "fc-classic-XUJ";
|
||||
// transparent resizer for mouse
|
||||
const blockPointerResizerClass = "fc-classic-1EY fc-classic-pps fc-classic-vs6";
|
||||
const rowPointerResizerClass = `${blockPointerResizerClass} fc-classic-AWB fc-classic-hza`;
|
||||
const columnPointerResizerClass = `${blockPointerResizerClass} fc-classic-MaV fc-classic-uuA`;
|
||||
// circle resizer for touch
|
||||
const blockTouchResizerClass = "fc-classic-1EY fc-classic-3wQ fc-classic-wsy fc-classic-lNM fc-classic-Jk3 fc-classic-AAA";
|
||||
const rowTouchResizerClass = `${blockTouchResizerClass} fc-classic-ERR fc-classic-Dq8`;
|
||||
const columnTouchResizerClass = `${blockTouchResizerClass} fc-classic-1V6 fc-classic-F99`;
|
||||
const getDayClass = (info) => joinClassNames("fc-classic-wsy", info.isMajor ? "fc-classic-C0k" : "fc-classic-C1x", info.isDisabled ? "fc-classic-iYS" :
|
||||
info.isToday && "fc-classic-hbn");
|
||||
const getSlotClass = (info) => joinClassNames("fc-classic-wsy fc-classic-C1x", info.isMinor && "fc-classic-TN2");
|
||||
const dayRowCommonClasses = {
|
||||
/* Day Row > List-Item Event
|
||||
----------------------------------------------------------------------------------------------- */
|
||||
listItemEventClass: (info) => joinClassNames("fc-classic-Ika fc-classic-7A6 fc-classic-Fvv", info.isNarrow ? "fc-classic-148" : "fc-classic-cKZ", info.isSelected
|
||||
? joinClassNames("fc-classic-k3f", info.isDragging && "fc-classic-qNs")
|
||||
: (info.isInteractive ? mutedHoverPressableClass : mutedHoverClass)),
|
||||
listItemEventBeforeClass: (info) => joinClassNames("fc-classic-Mjo", info.isNarrow ? "fc-classic-148" : "fc-classic-rVY"),
|
||||
listItemEventInnerClass: (info) => joinClassNames("fc-classic-dl1 fc-classic-1sP fc-classic-XpK fc-classic-z5u fc-classic-aTF", info.isNarrow ? xxsTextClass : "fc-classic-a3B"),
|
||||
listItemEventTimeClass: "fc-classic-F1o fc-classic-TZ4 fc-classic-pKG fc-classic-1Zl",
|
||||
listItemEventTitleClass: "fc-classic-F1o fc-classic-DIS fc-classic-TZ4 fc-classic-pKG fc-classic-OLq",
|
||||
/* Day Row > Row Event
|
||||
----------------------------------------------------------------------------------------------- */
|
||||
rowEventClass: (info) => joinClassNames(info.isStart && joinClassNames("fc-classic-kmj", info.isNarrow ? "fc-classic-qvL" : "fc-classic-Jzj"), info.isEnd && joinClassNames("fc-classic-Skl", info.isNarrow ? "fc-classic-9hC" : "fc-classic-3e1")),
|
||||
rowEventInnerClass: "fc-classic-z5u fc-classic-aTF",
|
||||
rowEventTimeClass: "fc-classic-F1o",
|
||||
rowEventTitleClass: "fc-classic-F1o",
|
||||
/* Day Row > More-Link
|
||||
----------------------------------------------------------------------------------------------- */
|
||||
rowMoreLinkClass: (info) => joinClassNames("fc-classic-Ika fc-classic-wsy fc-classic-Fvv", info.isNarrow
|
||||
? "fc-classic-148 fc-classic-0Pr"
|
||||
: "fc-classic-sI7 fc-classic-cKZ fc-classic-d0j", mutedHoverPressableClass),
|
||||
rowMoreLinkInnerClass: (info) => joinClassNames("fc-classic-7A6", info.isNarrow ? xxsTextClass : "fc-classic-a3B"),
|
||||
};
|
||||
const expanderIconClass = "fc-classic-vnf fc-classic-mAY";
|
||||
const continuationArrowClass = "fc-classic-rVY fc-classic-XM3 fc-classic-rif fc-classic-lMo";
|
||||
var index = {
|
||||
name: "theme-classic",
|
||||
optionDefaults: {
|
||||
className: "fc-classic-yth fc-classic-n5m",
|
||||
viewClass: (info) => {
|
||||
const hasBorderTop = info.options.headerToolbar || !info.borderlessTop;
|
||||
const hasBorderBottom = info.options.footerToolbar || !info.borderlessBottom;
|
||||
const hasBorderX = !info.borderlessX;
|
||||
return joinClassNames("fc-classic-Jk3 fc-classic-GAX fc-classic-C1x", hasBorderTop && "fc-classic-ku3", hasBorderBottom && "fc-classic-zi1", hasBorderX && "fc-classic-1Wx");
|
||||
},
|
||||
/* Toolbar
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
toolbarClass: (info) => joinClassNames("fc-classic-dl1 fc-classic-1sP fc-classic-dNl fc-classic-XpK fc-classic-N2M fc-classic-wwb", info.borderlessX && "fc-classic-Apf"),
|
||||
toolbarSectionClass: "fc-classic-yi0 fc-classic-dl1 fc-classic-1sP fc-classic-XpK fc-classic-wwb",
|
||||
toolbarTitleClass: "fc-classic-AVD fc-classic-DIS",
|
||||
buttonGroupClass: "fc-classic-dl1 fc-classic-1sP fc-classic-XpK",
|
||||
buttonClass: (info) => joinClassNames("fc-classic-dl6 fc-classic-1Wx fc-classic-dl1 fc-classic-1sP fc-classic-XpK fc-classic-sOR fc-classic-lYz fc-classic-vwH fc-classic-9yp fc-classic-RnT fc-classic-cfp fc-classic-Z9U", info.isIconOnly ? "fc-classic-Eaq" : "fc-classic-Apf", info.buttonGroup
|
||||
? "fc-classic-uk6 fc-classic-Tuc"
|
||||
: "fc-classic-Ig4", info.isSelected
|
||||
? "fc-classic-rQI fc-classic-Adi"
|
||||
: "fc-classic-vXO fc-classic-bqK fc-classic-aIH fc-classic-nQ5 fc-classic-JWq fc-classic-9Rj fc-classic-5ky", info.isDisabled && "fc-classic-Q3Z fc-classic-3Lc"),
|
||||
buttons: {
|
||||
prev: {
|
||||
iconContent: () => chevronLeft(`${buttonIconClass} fc-classic-asP`),
|
||||
},
|
||||
next: {
|
||||
iconContent: () => chevronLeft(`${buttonIconClass} fc-classic-jmT fc-classic-jY6`),
|
||||
},
|
||||
prevYear: {
|
||||
iconContent: () => chevronsLeft(`${buttonIconClass} fc-classic-asP`),
|
||||
},
|
||||
nextYear: {
|
||||
iconContent: () => chevronsLeft(`${buttonIconClass} fc-classic-jmT fc-classic-jY6`),
|
||||
},
|
||||
},
|
||||
/* Abstract Event
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
eventColor: "var(--fc-classic-event)",
|
||||
eventContrastColor: "var(--fc-classic-event-contrast)",
|
||||
eventClass: (info) => joinClassNames(info.isDragging && "fc-classic-n5m", info.event.url && "fc-classic-JiE", info.isSelected
|
||||
? joinClassNames(outlineWidthClass, info.isDragging ? "fc-classic-1kP" : "fc-classic-tkw")
|
||||
: outlineWidthFocusClass, primaryOutlineColorClass),
|
||||
/* Background Event
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
backgroundEventColor: "var(--fc-classic-background-event)",
|
||||
backgroundEventClass: "fc-classic-hsC fc-classic-jsy fc-classic-DO7",
|
||||
backgroundEventTitleClass: (info) => joinClassNames("fc-classic-MGT fc-classic-L1Y", info.isNarrow
|
||||
? `fc-classic-KUX ${xxsTextClass}`
|
||||
: "fc-classic-XJa fc-classic-a3B"),
|
||||
/* List-Item Event
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
listItemEventClass: "fc-classic-XpK",
|
||||
listItemEventBeforeClass: "fc-classic-lNM fc-classic-AAA",
|
||||
listItemEventInnerClass: "fc-classic-GAX",
|
||||
/* Block Event
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
blockEventClass: (info) => joinClassNames("fc-classic-bCs fc-classic-eYX fc-classic-d0j fc-classic-DO7 fc-classic-YjJ fc-classic-vwH", (info.isDragging && !info.isSelected) && "fc-classic-iTG", outlineOffsetClass),
|
||||
blockEventInnerClass: "fc-classic-i9F fc-classic-cfp",
|
||||
blockEventTimeClass: "fc-classic-TZ4 fc-classic-pKG fc-classic-1Zl",
|
||||
blockEventTitleClass: "fc-classic-TZ4 fc-classic-pKG fc-classic-OLq",
|
||||
/* Row Event
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
rowEventClass: (info) => joinClassNames("fc-classic-Ika fc-classic-JIC", info.isStart && "fc-classic-3J4", info.isEnd && "fc-classic-USt"),
|
||||
rowEventBeforeClass: (info) => joinClassNames(info.isStartResizable && joinClassNames(info.isSelected ? rowTouchResizerClass : rowPointerResizerClass, "fc-classic-11a")),
|
||||
rowEventAfterClass: (info) => joinClassNames(info.isEndResizable && joinClassNames(info.isSelected ? rowTouchResizerClass : rowPointerResizerClass, "fc-classic-bEw")),
|
||||
rowEventInnerClass: (info) => joinClassNames("fc-classic-dl1 fc-classic-1sP fc-classic-XpK", info.isNarrow ? xxsTextClass : "fc-classic-a3B"),
|
||||
rowEventTimeClass: "fc-classic-DIS",
|
||||
/* Column Event
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
columnEventClass: (info) => joinClassNames("fc-classic-1Wx fc-classic-A3h fc-classic-yKG", info.isStart && "fc-classic-ku3 fc-classic-Z7Q", info.isEnd && "fc-classic-Ika fc-classic-zi1 fc-classic-2qh"),
|
||||
columnEventBeforeClass: (info) => joinClassNames(info.isStartResizable && joinClassNames(info.isSelected ? columnTouchResizerClass : columnPointerResizerClass, "fc-classic-YDC")),
|
||||
columnEventAfterClass: (info) => joinClassNames(info.isEndResizable && joinClassNames(info.isSelected ? columnTouchResizerClass : columnPointerResizerClass, "fc-classic-fJL")),
|
||||
columnEventInnerClass: (info) => joinClassNames("fc-classic-dl1", info.isShort
|
||||
? "fc-classic-KUX fc-classic-1sP fc-classic-XpK fc-classic-NWN"
|
||||
: "fc-classic-oQ2 fc-classic-sgX"),
|
||||
columnEventTimeClass: (info) => joinClassNames(!info.isShort && "fc-classic-166", xxsTextClass),
|
||||
columnEventTitleClass: (info) => joinClassNames(!info.isShort && "fc-classic-2rx", (info.isShort || info.isNarrow) ? xxsTextClass : "fc-classic-a3B"),
|
||||
/* More-Link
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
moreLinkClass: `${outlineWidthFocusClass} ${primaryOutlineColorClass}`,
|
||||
moreLinkInnerClass: "fc-classic-TZ4 fc-classic-pKG",
|
||||
columnMoreLinkClass: `fc-classic-Ika fc-classic-Fvv fc-classic-wsy fc-classic-d0j fc-classic-4MR ${strongSolidPressableClass} fc-classic-vwH fc-classic-A3h fc-classic-yKG ${outlineOffsetClass}`,
|
||||
columnMoreLinkInnerClass: (info) => joinClassNames("fc-classic-KUX", info.isNarrow ? xxsTextClass : "fc-classic-a3B"),
|
||||
/* Day Header
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
dayHeaderAlign: (info) => info.inPopover ? "start" : "center",
|
||||
dayHeaderClass: (info) => joinClassNames("fc-classic-E9P", info.isDisabled && "fc-classic-iYS", info.inPopover
|
||||
? "fc-classic-zi1 fc-classic-C1x fc-classic-k3f"
|
||||
: joinClassNames("fc-classic-wsy", info.isMajor ? "fc-classic-C0k" : "fc-classic-C1x")),
|
||||
dayHeaderInnerClass: (info) => joinClassNames("fc-classic-rVY fc-classic-cJ3 fc-classic-dl1 fc-classic-sgX", info.isNarrow ? xxsTextClass : "fc-classic-9yp"),
|
||||
dayHeaderDividerClass: "fc-classic-zi1 fc-classic-C1x",
|
||||
/* Day Cell
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
dayCellClass: getDayClass,
|
||||
dayCellTopClass: (info) => joinClassNames(info.isNarrow ? "fc-classic-toR" : "fc-classic-84e", "fc-classic-dl1 fc-classic-1sP fc-classic-LMv"),
|
||||
dayCellTopInnerClass: (info) => joinClassNames("fc-classic-rVY fc-classic-TZ4", info.isNarrow
|
||||
? `fc-classic-cJ3 ${xxsTextClass}`
|
||||
: "fc-classic-V9v fc-classic-9yp", info.isOther && "fc-classic-taq", info.monthText && "fc-classic-DIS"),
|
||||
dayCellInnerClass: (info) => joinClassNames(info.inPopover && "fc-classic-3N5"),
|
||||
/* Popover
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
popoverClass: "fc-classic-Jk3 fc-classic-GAX fc-classic-wsy fc-classic-C1x fc-classic-tkw fc-classic-aNc fc-classic-n5m",
|
||||
popoverCloseClass: `fc-classic-bCs fc-classic-1EY fc-classic-2ik fc-classic-2w8 ${outlineWidthFocusClass} ${primaryOutlineColorClass} fc-classic-Z9U`,
|
||||
popoverCloseContent: () => x("fc-classic-XUJ fc-classic-9yp fc-classic-mAY"),
|
||||
/* Lane
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
dayLaneClass: getDayClass,
|
||||
dayLaneInnerClass: (info) => (info.isStack
|
||||
? "fc-classic-gMS"
|
||||
: info.isNarrow ? "fc-classic-148" : "fc-classic-Jzj fc-classic-B3G"),
|
||||
slotLaneClass: getSlotClass,
|
||||
/* List Day
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
listDayHeaderClass: "fc-classic-zi1 fc-classic-C1x fc-classic-SDU fc-classic-nHS fc-classic-dl1 fc-classic-1sP fc-classic-XpK fc-classic-N2M",
|
||||
listDayHeaderInnerClass: "fc-classic-Apf fc-classic-dl6 fc-classic-9yp fc-classic-DIS",
|
||||
/* Single Month (in Multi-Month)
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
singleMonthClass: (info) => joinClassNames(info.multiMonthColumns > 1 && "fc-classic-jD5", (info.multiMonthColumns === 1 && !info.isLast) && "fc-classic-zi1 fc-classic-C1x"),
|
||||
singleMonthHeaderClass: (info) => joinClassNames(info.multiMonthColumns > 1
|
||||
? "fc-classic-cM0"
|
||||
: "fc-classic-dl6 fc-classic-zi1 fc-classic-C1x fc-classic-Jk3", "fc-classic-XpK"),
|
||||
singleMonthHeaderInnerClass: "fc-classic-1Po fc-classic-DIS",
|
||||
/* Misc Table
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
tableHeaderClass: "fc-classic-Jk3",
|
||||
fillerClass: "fc-classic-wsy fc-classic-C1x fc-classic-lMo",
|
||||
dayHeaderRowClass: "fc-classic-wsy fc-classic-C1x",
|
||||
dayRowClass: "fc-classic-wsy fc-classic-C1x",
|
||||
slotHeaderRowClass: "fc-classic-wsy fc-classic-C1x",
|
||||
slotHeaderClass: getSlotClass,
|
||||
/* Misc Content
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
navLinkClass: `fc-classic-Eu0 ${outlineWidthFocusClass} ${outlineInsetClass} ${primaryOutlineColorClass}`,
|
||||
inlineWeekNumberClass: (info) => joinClassNames("fc-classic-1EY fc-classic-n9G fc-classic-rbS fc-classic-C2g fc-classic-KUX fc-classic-HXA fc-classic-m9h fc-classic-k3f", info.isNarrow ? xxsTextClass : "fc-classic-9yp"),
|
||||
nonBusinessHoursClass: "fc-classic-iYS",
|
||||
highlightClass: "fc-classic-hLU",
|
||||
/* Resource Day Header
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
resourceDayHeaderAlign: "center",
|
||||
resourceDayHeaderClass: (info) => joinClassNames("fc-classic-wsy", info.isMajor ? "fc-classic-C0k" : "fc-classic-C1x"),
|
||||
resourceDayHeaderInnerClass: (info) => joinClassNames("fc-classic-rVY fc-classic-cJ3 fc-classic-dl1 fc-classic-sgX", info.isNarrow ? xxsTextClass : "fc-classic-9yp"),
|
||||
/* Resource Data Grid
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
resourceColumnHeaderClass: "fc-classic-wsy fc-classic-C1x fc-classic-E9P",
|
||||
resourceColumnHeaderInnerClass: "fc-classic-bvX fc-classic-9yp",
|
||||
resourceColumnResizerClass: "fc-classic-1EY fc-classic-AWB fc-classic-4Tv fc-classic-dnf",
|
||||
resourceGroupHeaderClass: "fc-classic-wsy fc-classic-C1x fc-classic-k3f",
|
||||
resourceGroupHeaderInnerClass: "fc-classic-bvX fc-classic-9yp",
|
||||
resourceCellClass: "fc-classic-wsy fc-classic-C1x",
|
||||
resourceCellInnerClass: "fc-classic-bvX fc-classic-9yp",
|
||||
resourceIndentClass: "fc-classic-Mde fc-classic-kp0 fc-classic-E9P",
|
||||
resourceExpanderClass: `fc-classic-bCs ${outlineWidthFocusClass} ${primaryOutlineColorClass}`,
|
||||
resourceExpanderContent: (info) => info.isExpanded
|
||||
? minusSquare(expanderIconClass)
|
||||
: plusSquare(expanderIconClass),
|
||||
resourceHeaderRowClass: "fc-classic-wsy fc-classic-C1x",
|
||||
resourceRowClass: "fc-classic-wsy fc-classic-C1x",
|
||||
resourceColumnDividerClass: "fc-classic-1Wx fc-classic-C1x fc-classic-a7i fc-classic-k3f",
|
||||
/* Timeline Lane
|
||||
--------------------------------------------------------------------------------------------- */
|
||||
resourceGroupLaneClass: "fc-classic-wsy fc-classic-C1x fc-classic-k3f",
|
||||
resourceLaneClass: "fc-classic-wsy fc-classic-C1x",
|
||||
resourceLaneBottomClass: (info) => info.options.eventOverlap && "fc-classic-zrJ",
|
||||
timelineBottomClass: "fc-classic-zrJ",
|
||||
},
|
||||
views: {
|
||||
dayGrid: {
|
||||
...dayRowCommonClasses,
|
||||
dayCellBottomClass: "fc-classic-toR",
|
||||
},
|
||||
multiMonth: {
|
||||
...dayRowCommonClasses,
|
||||
dayCellBottomClass: "fc-classic-toR",
|
||||
tableClass: (info) => joinClassNames(info.multiMonthColumns > 1 && "fc-classic-C1x fc-classic-wsy"),
|
||||
},
|
||||
timeGrid: {
|
||||
...dayRowCommonClasses,
|
||||
dayCellBottomClass: "fc-classic-mhE",
|
||||
/* TimeGrid > Week Number Header
|
||||
------------------------------------------------------------------------------------------- */
|
||||
weekNumberHeaderClass: "fc-classic-XpK fc-classic-LMv",
|
||||
weekNumberHeaderInnerClass: (info) => joinClassNames("fc-classic-rVY fc-classic-cJ3", info.isNarrow ? xxsTextClass : "fc-classic-9yp"),
|
||||
/* TimeGrid > All-Day Header
|
||||
------------------------------------------------------------------------------------------- */
|
||||
allDayHeaderClass: "fc-classic-XpK fc-classic-LMv",
|
||||
allDayHeaderInnerClass: (info) => joinClassNames("fc-classic-rVY fc-classic-2tF fc-classic-2HE", info.isNarrow ? xxsTextClass : "fc-classic-9yp"),
|
||||
allDayDividerClass: "fc-classic-JIC fc-classic-C1x fc-classic-8ub fc-classic-k3f",
|
||||
/* TimeGrid > Slot Header
|
||||
------------------------------------------------------------------------------------------- */
|
||||
slotHeaderClass: "fc-classic-LMv",
|
||||
slotHeaderInnerClass: (info) => joinClassNames("fc-classic-rVY fc-classic-cJ3", info.isNarrow ? xxsTextClass : "fc-classic-9yp"),
|
||||
slotHeaderDividerClass: "fc-classic-USt fc-classic-C1x",
|
||||
/* TimeGrid > Now-Indicator
|
||||
------------------------------------------------------------------------------------------- */
|
||||
nowIndicatorHeaderClass: "fc-classic-rbS fc-classic-a10 fc-classic-XM3 fc-classic-rif fc-classic-jIH fc-classic-0qY",
|
||||
nowIndicatorLineClass: "fc-classic-ku3 fc-classic-sYT",
|
||||
},
|
||||
list: {
|
||||
/* List-View > List-Item Event
|
||||
------------------------------------------------------------------------------------------- */
|
||||
listDayClass: (info) => joinClassNames(!info.isLast && "fc-classic-zi1 fc-classic-C1x"),
|
||||
listItemEventClass: (info) => joinClassNames("fc-classic-bCs fc-classic-Apf fc-classic-dl6 fc-classic-wwb fc-classic-ku3 fc-classic-C1x", info.isInteractive
|
||||
? joinClassNames(faintHoverPressableClass, outlineInsetClass)
|
||||
: faintHoverClass),
|
||||
listItemEventBeforeClass: "fc-classic-GOm",
|
||||
listItemEventInnerClass: "fc-classic-eF2",
|
||||
listItemEventTimeClass: "fc-classic-88I fc-classic-yi0 fc-classic-roZ fc-classic-kMV fc-classic-TZ4 fc-classic-pKG fc-classic-IPx fc-classic-9yp",
|
||||
listItemEventTitleClass: (info) => joinClassNames("fc-classic-1El fc-classic-2KU fc-classic-TZ4 fc-classic-pKG fc-classic-9yp", info.event.url && "fc-classic-Ogp"),
|
||||
/* No-Events Screen
|
||||
------------------------------------------------------------------------------------------- */
|
||||
noEventsClass: "fc-classic-k3f fc-classic-dl1 fc-classic-sgX fc-classic-XpK fc-classic-E9P",
|
||||
noEventsInnerClass: "sticky fc-classic-jGI fc-classic-P9h",
|
||||
},
|
||||
timeline: {
|
||||
/* Timeline > Row Event
|
||||
------------------------------------------------------------------------------------------- */
|
||||
rowEventClass: (info) => joinClassNames(info.isEnd && "fc-classic-9hC", "fc-classic-XpK"),
|
||||
rowEventBeforeClass: (info) => (!info.isStart && `${continuationArrowClass} fc-classic-Bda fc-classic-5JV`),
|
||||
rowEventAfterClass: (info) => (!info.isEnd && `${continuationArrowClass} fc-classic-hhi fc-classic-LaM`),
|
||||
rowEventInnerClass: (info) => (info.options.eventOverlap
|
||||
? "fc-classic-2rx"
|
||||
: "fc-classic-End"),
|
||||
rowEventTimeClass: "fc-classic-oQ2",
|
||||
rowEventTitleClass: "fc-classic-oQ2",
|
||||
/* Timeline > More-Link
|
||||
------------------------------------------------------------------------------------------- */
|
||||
rowMoreLinkClass: `fc-classic-9hC fc-classic-Ika fc-classic-wsy fc-classic-d0j fc-classic-4MR ${strongSolidPressableClass} fc-classic-vwH`,
|
||||
rowMoreLinkInnerClass: "fc-classic-KUX fc-classic-a3B",
|
||||
/* Timeline > Slot Header
|
||||
------------------------------------------------------------------------------------------- */
|
||||
slotHeaderAlign: (info) => info.isTime ? "start" : "center",
|
||||
slotHeaderClass: (info) => joinClassNames("fc-classic-E9P", !info.level && "fc-classic-pKG"),
|
||||
slotHeaderInnerClass: (info) => joinClassNames("fc-classic-fn8 fc-classic-V9v fc-classic-9yp", info.hasNavLink && "fc-classic-Eu0"),
|
||||
slotHeaderDividerClass: "fc-classic-zi1 fc-classic-C1x",
|
||||
/* Timeline > Now-Indicator
|
||||
------------------------------------------------------------------------------------------- */
|
||||
nowIndicatorHeaderClass: "fc-classic-n9G fc-classic-J04 fc-classic-ybF fc-classic-Pqk fc-classic-bLA fc-classic-sYT",
|
||||
nowIndicatorLineClass: "fc-classic-3J4 fc-classic-sYT",
|
||||
},
|
||||
}
|
||||
};
|
||||
/* SVGs
|
||||
------------------------------------------------------------------------------------------------- */
|
||||
function chevronLeft(className) {
|
||||
return u("svg", { xmlns: "http://www.w3.org/2000/svg", className: className, width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: u("polyline", { points: "15 18 9 12 15 6" }) });
|
||||
}
|
||||
function chevronsLeft(className) {
|
||||
return u("svg", { xmlns: "http://www.w3.org/2000/svg", className: className, width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [u("polyline", { points: "11 17 6 12 11 7" }), u("polyline", { points: "18 17 13 12 18 7" })] });
|
||||
}
|
||||
function x(className) {
|
||||
return u("svg", { xmlns: "http://www.w3.org/2000/svg", className: className, width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [u("line", { x1: "18", y1: "6", x2: "6", y2: "18" }), u("line", { x1: "6", y1: "6", x2: "18", y2: "18" })] });
|
||||
}
|
||||
function plusSquare(className) {
|
||||
return u("svg", { xmlns: "http://www.w3.org/2000/svg", className: className, width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [u("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", ry: "2" }), u("line", { x1: "12", y1: "8", x2: "12", y2: "16" }), u("line", { x1: "8", y1: "12", x2: "16", y2: "12" })] });
|
||||
}
|
||||
function minusSquare(className) {
|
||||
return u("svg", { xmlns: "http://www.w3.org/2000/svg", className: className, width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", children: [u("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", ry: "2" }), u("line", { x1: "8", y1: "12", x2: "16", y2: "12" })] });
|
||||
}
|
||||
|
||||
globalPlugins.push(index);
|
||||
|
||||
})(FullCalendar.Shared);
|
||||
66
plugins/fullcalendar/themes/classic/palette.css
Normal file
66
plugins/fullcalendar/themes/classic/palette.css
Normal file
@@ -0,0 +1,66 @@
|
||||
|
||||
:root {
|
||||
/* buttons */
|
||||
--fc-classic-button: #334155;
|
||||
--fc-classic-button-border: #334155;
|
||||
--fc-classic-button-strong: #1e293b;
|
||||
--fc-classic-button-strong-border: #0f172a;
|
||||
--fc-classic-button-outline: #47556980;
|
||||
--fc-classic-button-foreground: #fff;
|
||||
|
||||
/* primary */
|
||||
--fc-classic-primary: #3788d8;
|
||||
--fc-classic-primary-foreground: #fff;
|
||||
|
||||
/* calendar content */
|
||||
--fc-classic-event: var(--fc-classic-primary);
|
||||
--fc-classic-event-contrast: var(--fc-classic-primary-foreground);
|
||||
--fc-classic-background-event: #22c55e;
|
||||
--fc-classic-background-event-opacity: 15%;
|
||||
--fc-classic-background-event-foreground-opacity: 50%;
|
||||
--fc-classic-highlight: #cffafe66;
|
||||
--fc-classic-today: #facc1526;
|
||||
--fc-classic-now: #ef4444;
|
||||
/* non-colors */
|
||||
--fc-classic-small-dot-width: 8px;
|
||||
--fc-classic-large-dot-width: 10px;
|
||||
|
||||
/* neutral backgrounds */
|
||||
--fc-classic-background: #ffffff;
|
||||
--fc-classic-faint: #0000000A;
|
||||
--fc-classic-muted: #00000014;
|
||||
--fc-classic-strong: #00000024;
|
||||
|
||||
/* neutral foregrounds */
|
||||
--fc-classic-foreground: #030712;
|
||||
--fc-classic-faint-foreground: #9ca3af;
|
||||
--fc-classic-muted-foreground: #6b7280;
|
||||
|
||||
/* neutral borders */
|
||||
--fc-classic-border: #ddd;
|
||||
--fc-classic-strong-border: #9ca3af;
|
||||
}
|
||||
|
||||
@media not print {
|
||||
[data-color-scheme=dark] {
|
||||
/* calendar content */
|
||||
--fc-classic-highlight: #3b82f633;
|
||||
--fc-classic-today: #fef08a1A;
|
||||
|
||||
/* neutral backgrounds */
|
||||
--fc-classic-background: #030712;
|
||||
--fc-classic-faint: #ffffff0A;
|
||||
--fc-classic-muted: #ffffff14;
|
||||
--fc-classic-strong: #ffffff24;
|
||||
|
||||
/* neutral foregrounds */
|
||||
--fc-classic-foreground: #fff;
|
||||
--fc-classic-faint-foreground: #4b5563;
|
||||
--fc-classic-muted-foreground: #9ca3af;
|
||||
|
||||
/* neutral borders */
|
||||
--fc-classic-border: #1f2937;
|
||||
--fc-classic-strong-border: #374151;
|
||||
}
|
||||
}
|
||||
|
||||
917
plugins/fullcalendar/themes/classic/theme.css
Normal file
917
plugins/fullcalendar/themes/classic/theme.css
Normal file
@@ -0,0 +1,917 @@
|
||||
.fc-classic-n5m {
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
--fc-classic-border-style: solid;
|
||||
}
|
||||
|
||||
.fc-classic-Z9U {
|
||||
appearance: button;
|
||||
font: inherit;
|
||||
font-feature-settings: inherit;
|
||||
font-variation-settings: inherit;
|
||||
letter-spacing: inherit;
|
||||
color: inherit;
|
||||
opacity: 1;
|
||||
background-color: #0000;
|
||||
border-radius: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
.fc-classic-JiE {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
|
||||
.fc-classic-3Lc {
|
||||
pointer-events: none
|
||||
}
|
||||
|
||||
.fc-classic-1EY {
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.fc-classic-eYX {
|
||||
position: relative
|
||||
}
|
||||
|
||||
.fc-classic-OUe {
|
||||
position: sticky
|
||||
}
|
||||
|
||||
.fc-classic-MaV {
|
||||
inset-inline: 0
|
||||
}
|
||||
|
||||
.fc-classic-AWB {
|
||||
inset-block: 0
|
||||
}
|
||||
|
||||
.fc-classic-11a {
|
||||
inset-inline-start: -4px
|
||||
}
|
||||
|
||||
.fc-classic-rbS {
|
||||
inset-inline-start: 0
|
||||
}
|
||||
|
||||
.fc-classic-bEw {
|
||||
inset-inline-end: -4px
|
||||
}
|
||||
|
||||
.fc-classic-2w8 {
|
||||
inset-inline-end: 2px
|
||||
}
|
||||
|
||||
.fc-classic-dnf {
|
||||
inset-inline-end: -3px
|
||||
}
|
||||
|
||||
.fc-classic-YDC {
|
||||
top: -4px
|
||||
}
|
||||
|
||||
.fc-classic-n9G {
|
||||
top: 0
|
||||
}
|
||||
|
||||
.fc-classic-2ik {
|
||||
top: 2px
|
||||
}
|
||||
|
||||
.fc-classic-ERR {
|
||||
top: 50%
|
||||
}
|
||||
|
||||
.fc-classic-fJL {
|
||||
bottom: -4px
|
||||
}
|
||||
|
||||
.fc-classic-jGI {
|
||||
bottom: 0
|
||||
}
|
||||
|
||||
.fc-classic-1V6 {
|
||||
left: 50%
|
||||
}
|
||||
|
||||
.fc-classic-88I {
|
||||
order: -1
|
||||
}
|
||||
|
||||
.fc-classic-gMS {
|
||||
margin: 4px
|
||||
}
|
||||
|
||||
.fc-classic-bvX {
|
||||
margin: 8px
|
||||
}
|
||||
|
||||
.fc-classic-jD5 {
|
||||
margin: 16px
|
||||
}
|
||||
|
||||
.fc-classic-J04 {
|
||||
margin-inline: -5px
|
||||
}
|
||||
|
||||
.fc-classic-cKZ {
|
||||
margin-inline: 2px
|
||||
}
|
||||
|
||||
.fc-classic-rVY {
|
||||
margin-inline: 4px
|
||||
}
|
||||
|
||||
.fc-classic-fn8 {
|
||||
margin-inline: 8px
|
||||
}
|
||||
|
||||
.fc-classic-148 {
|
||||
margin-inline: 1px
|
||||
}
|
||||
|
||||
.fc-classic-cJ3 {
|
||||
margin-block: 2px
|
||||
}
|
||||
|
||||
.fc-classic-V9v {
|
||||
margin-block: 4px
|
||||
}
|
||||
|
||||
.fc-classic-2tF {
|
||||
margin-block: 8px
|
||||
}
|
||||
|
||||
.fc-classic-Jzj {
|
||||
margin-inline-start: 2px
|
||||
}
|
||||
|
||||
.fc-classic-Mde {
|
||||
margin-inline-start: 8px
|
||||
}
|
||||
|
||||
.fc-classic-qvL {
|
||||
margin-inline-start: 1px
|
||||
}
|
||||
|
||||
.fc-classic-kp0 {
|
||||
margin-inline-end: -4px
|
||||
}
|
||||
|
||||
.fc-classic-3e1 {
|
||||
margin-inline-end: 2px
|
||||
}
|
||||
|
||||
.fc-classic-B3G {
|
||||
margin-inline-end: 2.5%
|
||||
}
|
||||
|
||||
.fc-classic-9hC {
|
||||
margin-inline-end: 1px
|
||||
}
|
||||
|
||||
.fc-classic-Dq8 {
|
||||
margin-top: -4px
|
||||
}
|
||||
|
||||
.fc-classic-a10 {
|
||||
margin-top: -5px
|
||||
}
|
||||
|
||||
.fc-classic-Ika {
|
||||
margin-bottom: 1px
|
||||
}
|
||||
|
||||
.fc-classic-nHS {
|
||||
margin-bottom: -1px
|
||||
}
|
||||
|
||||
.fc-classic-F99 {
|
||||
margin-left: -4px
|
||||
}
|
||||
|
||||
.fc-classic-eF2 {
|
||||
display: contents
|
||||
}
|
||||
|
||||
.fc-classic-I48 {
|
||||
display: block
|
||||
}
|
||||
|
||||
.fc-classic-dl1 {
|
||||
display: flex
|
||||
}
|
||||
|
||||
.fc-classic-i3N {
|
||||
display: grid
|
||||
}
|
||||
|
||||
.fc-classic-pps {
|
||||
display: none
|
||||
}
|
||||
|
||||
.fc-classic-3wQ {
|
||||
width: 8px;
|
||||
height: 8px
|
||||
}
|
||||
|
||||
.fc-classic-vnf {
|
||||
width: 16px;
|
||||
height: 16px
|
||||
}
|
||||
|
||||
.fc-classic-XUJ {
|
||||
width: 20px;
|
||||
height: 20px
|
||||
}
|
||||
|
||||
.fc-classic-uuA {
|
||||
height: 8px
|
||||
}
|
||||
|
||||
.fc-classic-zrJ {
|
||||
height: 12px
|
||||
}
|
||||
|
||||
.fc-classic-84e {
|
||||
min-height: 2px
|
||||
}
|
||||
|
||||
.fc-classic-mhE {
|
||||
min-height: 12px
|
||||
}
|
||||
|
||||
.fc-classic-toR {
|
||||
min-height: 1px
|
||||
}
|
||||
|
||||
.fc-classic-roZ {
|
||||
width: 50%
|
||||
}
|
||||
|
||||
.fc-classic-hza {
|
||||
width: 8px
|
||||
}
|
||||
|
||||
.fc-classic-4Tv {
|
||||
width: 5px
|
||||
}
|
||||
|
||||
.fc-classic-kMV {
|
||||
max-width: 200px
|
||||
}
|
||||
|
||||
.fc-classic-2KU {
|
||||
min-width: 0
|
||||
}
|
||||
|
||||
.fc-classic-aNc {
|
||||
min-width: 220px
|
||||
}
|
||||
|
||||
.fc-classic-yi0 {
|
||||
flex-shrink: 0
|
||||
}
|
||||
|
||||
.fc-classic-1Zl {
|
||||
flex-shrink: 1
|
||||
}
|
||||
|
||||
.fc-classic-OLq {
|
||||
flex-shrink: 100
|
||||
}
|
||||
|
||||
.fc-classic-1El {
|
||||
flex-grow: 1
|
||||
}
|
||||
|
||||
.fc-classic-jmT {
|
||||
rotate: 180deg
|
||||
}
|
||||
|
||||
.fc-classic-sgX {
|
||||
flex-direction: column
|
||||
}
|
||||
|
||||
.fc-classic-1sP {
|
||||
flex-direction: row
|
||||
}
|
||||
|
||||
.fc-classic-dNl {
|
||||
flex-wrap: wrap
|
||||
}
|
||||
|
||||
.fc-classic-XpK {
|
||||
align-items: center
|
||||
}
|
||||
|
||||
.fc-classic-N2M {
|
||||
justify-content: space-between
|
||||
}
|
||||
|
||||
.fc-classic-E9P {
|
||||
justify-content: center
|
||||
}
|
||||
|
||||
.fc-classic-LMv {
|
||||
justify-content: flex-end
|
||||
}
|
||||
|
||||
.fc-classic-aTF {
|
||||
gap: 2px
|
||||
}
|
||||
|
||||
.fc-classic-NWN {
|
||||
gap: 4px
|
||||
}
|
||||
|
||||
.fc-classic-wwb {
|
||||
gap: 12px
|
||||
}
|
||||
|
||||
.fc-classic-yth {
|
||||
gap: 20px
|
||||
}
|
||||
|
||||
.fc-classic-sI7 {
|
||||
align-self: flex-start
|
||||
}
|
||||
|
||||
.fc-classic-pKG {
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.fc-classic-Ig4 {
|
||||
border-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-AAA {
|
||||
border-radius: 3.40282e38px
|
||||
}
|
||||
|
||||
.fc-classic-Fvv {
|
||||
border-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-kmj {
|
||||
border-start-start-radius: 4px;
|
||||
border-end-start-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-Skl {
|
||||
border-start-end-radius: 4px;
|
||||
border-end-end-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-C2g {
|
||||
border-end-end-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-Z7Q {
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-2qh {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-wsy {
|
||||
border-style: var(--fc-classic-border-style);
|
||||
border-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-5JF {
|
||||
border-style: var(--fc-classic-border-style);
|
||||
border-width: 4px
|
||||
}
|
||||
|
||||
.fc-classic-yDA {
|
||||
border-style: var(--fc-classic-border-style);
|
||||
border-width: 5px
|
||||
}
|
||||
|
||||
.fc-classic-Mjo {
|
||||
border-style: var(--fc-classic-border-style);
|
||||
border-width: calc(var(--fc-classic-small-dot-width) / 2)
|
||||
}
|
||||
|
||||
.fc-classic-GOm {
|
||||
border-style: var(--fc-classic-border-style);
|
||||
border-width: calc(var(--fc-classic-large-dot-width) / 2)
|
||||
}
|
||||
|
||||
.fc-classic-1Wx {
|
||||
border-inline-style: var(--fc-classic-border-style);
|
||||
border-inline-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-ybF {
|
||||
border-inline-style: var(--fc-classic-border-style);
|
||||
border-inline-width: 5px
|
||||
}
|
||||
|
||||
.fc-classic-JIC {
|
||||
border-block-style: var(--fc-classic-border-style);
|
||||
border-block-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-XM3 {
|
||||
border-block-style: var(--fc-classic-border-style);
|
||||
border-block-width: 5px
|
||||
}
|
||||
|
||||
.fc-classic-3J4 {
|
||||
border-inline-start-style: var(--fc-classic-border-style);
|
||||
border-inline-start-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-hhi {
|
||||
border-inline-start-style: var(--fc-classic-border-style);
|
||||
border-inline-start-width: 5px
|
||||
}
|
||||
|
||||
.fc-classic-jIH {
|
||||
border-inline-start-style: var(--fc-classic-border-style);
|
||||
border-inline-start-width: 6px
|
||||
}
|
||||
|
||||
.fc-classic-USt {
|
||||
border-inline-end-style: var(--fc-classic-border-style);
|
||||
border-inline-end-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-Bda {
|
||||
border-inline-end-style: var(--fc-classic-border-style);
|
||||
border-inline-end-width: 5px
|
||||
}
|
||||
|
||||
.fc-classic-ku3 {
|
||||
border-top-style: var(--fc-classic-border-style);
|
||||
border-top-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-bLA {
|
||||
border-top-style: var(--fc-classic-border-style);
|
||||
border-top-width: 6px
|
||||
}
|
||||
|
||||
.fc-classic-zi1 {
|
||||
border-bottom-style: var(--fc-classic-border-style);
|
||||
border-bottom-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-TN2 {
|
||||
--fc-classic-border-style: dotted;
|
||||
border-style: dotted
|
||||
}
|
||||
|
||||
.fc-classic-C1x {
|
||||
border-color: var(--fc-classic-border)
|
||||
}
|
||||
|
||||
.fc-classic-sYT {
|
||||
border-color: var(--fc-classic-now)
|
||||
}
|
||||
|
||||
.fc-classic-0Pr {
|
||||
border-color: var(--fc-classic-primary)
|
||||
}
|
||||
|
||||
.fc-classic-vXO {
|
||||
border-color: var(--fc-classic-button-border)
|
||||
}
|
||||
|
||||
.fc-classic-rQI {
|
||||
border-color: var(--fc-classic-button-strong-border)
|
||||
}
|
||||
|
||||
.fc-classic-C0k {
|
||||
border-color: var(--fc-classic-strong-border)
|
||||
}
|
||||
|
||||
.fc-classic-lNM {
|
||||
border-color: var(--fc-event-color)
|
||||
}
|
||||
|
||||
.fc-classic-d0j {
|
||||
border-color: #0000
|
||||
}
|
||||
|
||||
.fc-classic-Pqk {
|
||||
border-inline-color: #0000
|
||||
}
|
||||
|
||||
.fc-classic-rif {
|
||||
border-block-color: #0000
|
||||
}
|
||||
|
||||
.fc-classic-0qY {
|
||||
border-inline-start-color: var(--fc-classic-now)
|
||||
}
|
||||
|
||||
.fc-classic-LaM {
|
||||
border-inline-start-color: #000
|
||||
}
|
||||
|
||||
.fc-classic-5JV {
|
||||
border-inline-end-color: #000
|
||||
}
|
||||
|
||||
.fc-classic-1Aa {
|
||||
border-top-color: var(--fc-classic-now)
|
||||
}
|
||||
|
||||
.fc-classic-Jk3 {
|
||||
background-color: var(--fc-classic-background)
|
||||
}
|
||||
|
||||
.fc-classic-iYS {
|
||||
background-color: var(--fc-classic-faint)
|
||||
}
|
||||
|
||||
.fc-classic-hLU {
|
||||
background-color: var(--fc-classic-highlight)
|
||||
}
|
||||
|
||||
.fc-classic-k3f {
|
||||
background-color: var(--fc-classic-muted)
|
||||
}
|
||||
|
||||
.fc-classic-YjJ {
|
||||
background-color: var(--fc-event-color)
|
||||
}
|
||||
|
||||
@media not print {
|
||||
@supports (color:color-mix(in lab, red, red)) {
|
||||
.fc-classic-hsC {
|
||||
background-color: color-mix(in oklab, var(--fc-event-color) var(--fc-classic-background-event-opacity), transparent)
|
||||
}
|
||||
}
|
||||
@supports not (color:color-mix(in lab, red, red)) {
|
||||
.fc-classic-hsC {
|
||||
position: relative;
|
||||
isolation: isolate
|
||||
}
|
||||
.fc-classic-hsC:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-color: var(--fc-event-color);
|
||||
opacity: var(--fc-classic-background-event-opacity);
|
||||
z-index: -1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.fc-classic-JWq {
|
||||
background-color: var(--fc-classic-button)
|
||||
}
|
||||
|
||||
.fc-classic-Adi {
|
||||
background-color: var(--fc-classic-button-strong)
|
||||
}
|
||||
|
||||
.fc-classic-KUX {
|
||||
padding: 2px
|
||||
}
|
||||
|
||||
.fc-classic-XJa {
|
||||
padding: 6px
|
||||
}
|
||||
|
||||
.fc-classic-3N5 {
|
||||
padding: 8px
|
||||
}
|
||||
|
||||
.fc-classic-7A6 {
|
||||
padding: 1px
|
||||
}
|
||||
|
||||
.fc-classic-oQ2 {
|
||||
padding-inline: 2px
|
||||
}
|
||||
|
||||
.fc-classic-Eaq {
|
||||
padding-inline: 10px
|
||||
}
|
||||
|
||||
.fc-classic-Apf {
|
||||
padding-inline: 12px
|
||||
}
|
||||
|
||||
.fc-classic-F1o {
|
||||
padding-inline: 1px
|
||||
}
|
||||
|
||||
.fc-classic-2rx {
|
||||
padding-block: 2px
|
||||
}
|
||||
|
||||
.fc-classic-Jhn {
|
||||
padding-block: 4px
|
||||
}
|
||||
|
||||
.fc-classic-End {
|
||||
padding-block: 6px
|
||||
}
|
||||
|
||||
.fc-classic-dl6 {
|
||||
padding-block: 8px
|
||||
}
|
||||
|
||||
.fc-classic-P9h {
|
||||
padding-block: 60px
|
||||
}
|
||||
|
||||
.fc-classic-z5u {
|
||||
padding-block: 1px
|
||||
}
|
||||
|
||||
.fc-classic-a7i {
|
||||
padding-inline-start: 2px
|
||||
}
|
||||
|
||||
.fc-classic-166 {
|
||||
padding-top: 2px
|
||||
}
|
||||
|
||||
.fc-classic-8ub {
|
||||
padding-bottom: 2px
|
||||
}
|
||||
|
||||
.fc-classic-cM0 {
|
||||
padding-bottom: 16px
|
||||
}
|
||||
|
||||
.fc-classic-HXA {
|
||||
text-align: center
|
||||
}
|
||||
|
||||
.fc-classic-2HE {
|
||||
text-align: end
|
||||
}
|
||||
|
||||
.fc-classic-AVD {
|
||||
font-size: 24px;
|
||||
line-height: calc(2/1.5)
|
||||
}
|
||||
|
||||
.fc-classic-vQz {
|
||||
font-size: 11px;
|
||||
line-height: 1.09091
|
||||
}
|
||||
|
||||
.fc-classic-1Po {
|
||||
font-size: 16px;
|
||||
line-height: calc(1.5/1)
|
||||
}
|
||||
|
||||
.fc-classic-9yp {
|
||||
font-size: 14px;
|
||||
line-height: calc(1.25/.875)
|
||||
}
|
||||
|
||||
.fc-classic-a3B {
|
||||
font-size: 12px;
|
||||
line-height: calc(1/.75)
|
||||
}
|
||||
|
||||
.fc-classic-DIS {
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
.fc-classic-IPx {
|
||||
text-overflow: ellipsis
|
||||
}
|
||||
|
||||
.fc-classic-TZ4 {
|
||||
white-space: nowrap
|
||||
}
|
||||
|
||||
.fc-classic-jm6 {
|
||||
white-space: pre
|
||||
}
|
||||
|
||||
.fc-classic-taq {
|
||||
color: var(--fc-classic-faint-foreground)
|
||||
}
|
||||
|
||||
.fc-classic-m9h {
|
||||
color: var(--fc-classic-muted-foreground)
|
||||
}
|
||||
|
||||
.fc-classic-GAX {
|
||||
color: var(--fc-classic-foreground)
|
||||
}
|
||||
|
||||
.fc-classic-RnT {
|
||||
color: var(--fc-classic-button-foreground)
|
||||
}
|
||||
|
||||
.fc-classic-i9F {
|
||||
color: var(--fc-event-contrast-color)
|
||||
}
|
||||
|
||||
.fc-classic-L1Y {
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
.fc-classic-lMo {
|
||||
opacity: .5
|
||||
}
|
||||
|
||||
.fc-classic-Q3Z {
|
||||
opacity: .65
|
||||
}
|
||||
|
||||
.fc-classic-iTG {
|
||||
opacity: .75
|
||||
}
|
||||
|
||||
.fc-classic-MGT {
|
||||
opacity: var(--fc-classic-background-event-foreground-opacity)
|
||||
}
|
||||
|
||||
.fc-classic-1kP {
|
||||
box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a
|
||||
}
|
||||
|
||||
.fc-classic-tkw {
|
||||
box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a
|
||||
}
|
||||
|
||||
.fc-classic-qNs {
|
||||
box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a
|
||||
}
|
||||
|
||||
.fc-classic-A3h {
|
||||
box-shadow: 0 0 0 1px var(--fc-classic-ring-color, currentcolor)
|
||||
}
|
||||
|
||||
.fc-classic-yKG {
|
||||
--fc-classic-ring-color: var(--fc-classic-background)
|
||||
}
|
||||
|
||||
.fc-classic-2R2 {
|
||||
outline-style: solid;
|
||||
outline-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-0Bj {
|
||||
outline-style: solid;
|
||||
outline-width: 2px
|
||||
}
|
||||
|
||||
.fc-classic-fFh {
|
||||
outline-offset: -2px
|
||||
}
|
||||
|
||||
.fc-classic-3Xj {
|
||||
outline-offset: 2px
|
||||
}
|
||||
|
||||
.fc-classic-lYz {
|
||||
outline-color: var(--fc-classic-button-outline)
|
||||
}
|
||||
|
||||
.fc-classic-zIi {
|
||||
outline-color: var(--fc-classic-primary)
|
||||
}
|
||||
|
||||
.fc-classic-SDU {
|
||||
background: linear-gradient(var(--fc-classic-muted), var(--fc-classic-muted))var(--fc-classic-background)
|
||||
}
|
||||
|
||||
.fc-classic-BaR {
|
||||
background: linear-gradient(var(--fc-classic-strong), var(--fc-classic-strong))var(--fc-classic-background)
|
||||
}
|
||||
|
||||
.fc-classic-mAY:not(:is(:where(.fc-classic-bCs):hover *)) {
|
||||
opacity: .65
|
||||
}
|
||||
|
||||
@media not all and (hover:hover) {
|
||||
.fc-classic-mAY {
|
||||
opacity: .65
|
||||
}
|
||||
}
|
||||
|
||||
@media not print {
|
||||
.fc-classic-hbn {
|
||||
background-color: var(--fc-classic-today)
|
||||
}
|
||||
}
|
||||
|
||||
@media (hover:hover) {
|
||||
.fc-classic-vs6:is(:where(.fc-classic-bCs):hover *) {
|
||||
display: block
|
||||
}
|
||||
|
||||
.fc-classic-Ogp:is(:where(.fc-classic-bCs):hover *) {
|
||||
text-decoration-line: underline
|
||||
}
|
||||
}
|
||||
|
||||
.fc-classic-uk6:first-child {
|
||||
border-start-start-radius: 4px;
|
||||
border-end-start-radius: 4px
|
||||
}
|
||||
|
||||
.fc-classic-Tuc:last-child {
|
||||
border-start-end-radius: 4px;
|
||||
border-end-end-radius: 4px
|
||||
}
|
||||
|
||||
@media (hover:hover) {
|
||||
.fc-classic-bqK:hover {
|
||||
border-color: var(--fc-classic-button-strong-border)
|
||||
}
|
||||
|
||||
.fc-classic-9Rj:hover {
|
||||
background-color: var(--fc-classic-button-strong)
|
||||
}
|
||||
|
||||
.fc-classic-Ubk:hover {
|
||||
background-color: var(--fc-classic-faint)
|
||||
}
|
||||
|
||||
.fc-classic-4yP:hover {
|
||||
background-color: var(--fc-classic-muted)
|
||||
}
|
||||
|
||||
.fc-classic-Eu0:hover {
|
||||
text-decoration-line: underline
|
||||
}
|
||||
}
|
||||
|
||||
.fc-classic-OIx:focus-visible {
|
||||
background-color: var(--fc-classic-faint)
|
||||
}
|
||||
|
||||
.fc-classic-tCP:focus-visible {
|
||||
background-color: var(--fc-classic-muted)
|
||||
}
|
||||
|
||||
.fc-classic-uqo:focus-visible {
|
||||
outline-style: solid;
|
||||
outline-width: 2px
|
||||
}
|
||||
|
||||
.fc-classic-sOR:focus-visible {
|
||||
outline-style: solid;
|
||||
outline-width: 3px
|
||||
}
|
||||
|
||||
.fc-classic-aIH:active {
|
||||
border-color: var(--fc-classic-button-strong-border)
|
||||
}
|
||||
|
||||
.fc-classic-5ky:active {
|
||||
background-color: var(--fc-classic-button-strong)
|
||||
}
|
||||
|
||||
.fc-classic-28F:active {
|
||||
background-color: var(--fc-classic-muted)
|
||||
}
|
||||
|
||||
.fc-classic-8gz:active {
|
||||
background-color: var(--fc-classic-strong)
|
||||
}
|
||||
|
||||
@media print {
|
||||
.fc-classic-jsy {
|
||||
border-width: 1px
|
||||
}
|
||||
|
||||
.fc-classic-nQ5 {
|
||||
border-color: var(--fc-classic-button-strong-border)
|
||||
}
|
||||
|
||||
.fc-classic-DO7 {
|
||||
border-color: var(--fc-event-color)
|
||||
}
|
||||
|
||||
.fc-classic-4MR {
|
||||
border-color: #000
|
||||
}
|
||||
|
||||
.fc-classic-vwH {
|
||||
background-color: #fff
|
||||
}
|
||||
|
||||
.fc-classic-cfp {
|
||||
color: #000
|
||||
}
|
||||
}
|
||||
|
||||
[dir=rtl] .fc-classic-jY6 {
|
||||
rotate: none
|
||||
}
|
||||
|
||||
[dir=rtl] .fc-classic-asP {
|
||||
rotate: 180deg
|
||||
}
|
||||
Reference in New Issue
Block a user