FIxed
This commit is contained in:
+115
-126
@@ -11,10 +11,17 @@
|
||||
--select: #aaf;
|
||||
--label-bg: #fafbfe;
|
||||
--label-bg-rgb: 250, 251, 254;
|
||||
|
||||
/* Layout */
|
||||
--row-h: 2.2em;
|
||||
--label-w: minmax(4em, 8%);
|
||||
--cell-w: 1fr;
|
||||
--cell-h: clamp(4em, 8vh, 8em);
|
||||
--overlay-w: minmax(3rem, 5%);
|
||||
}
|
||||
|
||||
/* Prevent text selection in calendar */
|
||||
#calendar-viewport, #calendar-content, .week-row, .cell,
|
||||
#calendar-viewport, #calendar-content, .week-row, .cell,
|
||||
.calendar-header, .week-label, .month-name-label,
|
||||
.calendar-container, .jogwheel-viewport, .jogwheel-content {
|
||||
-webkit-user-select: none;
|
||||
@@ -26,18 +33,18 @@
|
||||
}
|
||||
|
||||
/* Month tints (light) */
|
||||
.cell.dec { background: hsl(220 20% 95%) }
|
||||
.cell.jan { background: hsl(220 20% 88%) }
|
||||
.cell.feb { background: hsl(220 20% 95%) }
|
||||
.cell.mar { background: hsl(125 60% 88%) }
|
||||
.cell.apr { background: hsl(125 60% 95%) }
|
||||
.cell.may { background: hsl(125 60% 88%) }
|
||||
.cell.jun { background: hsl(45 85% 95%) }
|
||||
.cell.jul { background: hsl(45 85% 88%) }
|
||||
.cell.aug { background: hsl(45 85% 95%) }
|
||||
.cell.sep { background: hsl(18 78% 88%) }
|
||||
.cell.oct { background: hsl(18 78% 95%) }
|
||||
.cell.nov { background: hsl(18 78% 88%) }
|
||||
.dec { background: hsl(220 20% 95%) }
|
||||
.jan { background: hsl(220 20% 88%) }
|
||||
.feb { background: hsl(220 20% 95%) }
|
||||
.mar { background: hsl(125 60% 88%) }
|
||||
.apr { background: hsl(125 60% 95%) }
|
||||
.may { background: hsl(125 60% 88%) }
|
||||
.jun { background: hsl(45 85% 95%) }
|
||||
.jul { background: hsl(45 85% 88%) }
|
||||
.aug { background: hsl(45 85% 95%) }
|
||||
.sep { background: hsl(18 78% 88%) }
|
||||
.oct { background: hsl(18 78% 95%) }
|
||||
.nov { background: hsl(18 78% 88%) }
|
||||
|
||||
/* Color tokens (dark) */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
@@ -56,29 +63,21 @@
|
||||
}
|
||||
|
||||
/* Month tints (dark) */
|
||||
.cell.dec { background: hsl(220 20% 22%) }
|
||||
.cell.jan { background: hsl(220 20% 16%) }
|
||||
.cell.feb { background: hsl(220 20% 22%) }
|
||||
.cell.mar { background: hsl(125 40% 18%) }
|
||||
.cell.apr { background: hsl(125 40% 26%) }
|
||||
.cell.may { background: hsl(125 40% 18%) }
|
||||
.cell.jun { background: hsl(45 70% 24%) }
|
||||
.cell.jul { background: hsl(45 70% 18%) }
|
||||
.cell.aug { background: hsl(45 70% 24%) }
|
||||
.cell.sep { background: hsl(18 70% 18%) }
|
||||
.cell.oct { background: hsl(18 70% 26%) }
|
||||
.cell.nov { background: hsl(18 70% 18%) }
|
||||
.dec { background: hsl(220 20% 22%) }
|
||||
.jan { background: hsl(220 20% 16%) }
|
||||
.feb { background: hsl(220 20% 22%) }
|
||||
.mar { background: hsl(125 40% 18%) }
|
||||
.apr { background: hsl(125 40% 26%) }
|
||||
.may { background: hsl(125 40% 18%) }
|
||||
.jun { background: hsl(45 70% 24%) }
|
||||
.jul { background: hsl(45 70% 18%) }
|
||||
.aug { background: hsl(45 70% 24%) }
|
||||
.sep { background: hsl(18 70% 18%) }
|
||||
.oct { background: hsl(18 70% 26%) }
|
||||
.nov { background: hsl(18 70% 18%) }
|
||||
}
|
||||
|
||||
/* Layout & typography */
|
||||
:root {
|
||||
--row-h: 2.2em;
|
||||
--label-w: minmax(4em, 8%);
|
||||
--cell-w: 1fr;
|
||||
--cell-h: clamp(4em, 8vh, 8em);
|
||||
--overlay-w: minmax(3rem, 5%);
|
||||
}
|
||||
|
||||
* { box-sizing: border-box }
|
||||
|
||||
body {
|
||||
@@ -113,15 +112,12 @@ header {
|
||||
gap: .75rem;
|
||||
}
|
||||
|
||||
.today-date {
|
||||
cursor: pointer;
|
||||
}
|
||||
.today-date::first-line {
|
||||
color: var(--today);
|
||||
}
|
||||
.today-date { cursor: pointer }
|
||||
.today-date::first-line { color: var(--today) }
|
||||
.today-button:hover { opacity: .8 }
|
||||
|
||||
.calendar-header {
|
||||
/* Header row */
|
||||
.calendar-header, #calendar-header {
|
||||
display: grid;
|
||||
grid-template-columns: var(--label-w) repeat(7, var(--cell-w)) var(--overlay-w);
|
||||
border-bottom: .1em solid var(--muted);
|
||||
@@ -129,8 +125,11 @@ header {
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.calendar-header .dow-label { display:grid; place-items:center; height: var(--cell-h); color: var(--muted) }
|
||||
.overlay-header-spacer { grid-column: -2 / -1 }
|
||||
|
||||
.calendar-container {
|
||||
/* Main container */
|
||||
.calendar-container, #calendar-container {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
@@ -138,7 +137,8 @@ header {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.calendar-viewport {
|
||||
/* Viewports (support id or class) */
|
||||
.calendar-viewport, #calendar-viewport {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
@@ -146,13 +146,12 @@ header {
|
||||
width: 100%;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
.calendar-viewport::-webkit-scrollbar { display: none }
|
||||
.calendar-viewport::-webkit-scrollbar,
|
||||
#calendar-viewport::-webkit-scrollbar { display: none }
|
||||
|
||||
.jogwheel-viewport {
|
||||
.jogwheel-viewport, #jogwheel-viewport {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
top: 0; right: 0; bottom: 0;
|
||||
width: var(--overlay-w);
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
@@ -160,12 +159,13 @@ header {
|
||||
z-index: 20;
|
||||
cursor: ns-resize;
|
||||
}
|
||||
.jogwheel-viewport::-webkit-scrollbar { display: none }
|
||||
.jogwheel-viewport::-webkit-scrollbar,
|
||||
#jogwheel-viewport::-webkit-scrollbar { display: none }
|
||||
|
||||
.jogwheel-content { position: relative; width: 100% }
|
||||
|
||||
.calendar-content { position: relative }
|
||||
.jogwheel-content, #jogwheel-content { position: relative; width: 100% }
|
||||
.calendar-content, #calendar-content { position: relative }
|
||||
|
||||
/* Week row: label + 7-day grid + jogwheel column */
|
||||
.week-row {
|
||||
display: grid;
|
||||
grid-template-columns: var(--label-w) repeat(7, var(--cell-w)) var(--overlay-w);
|
||||
@@ -176,14 +176,8 @@ header {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Fixed heights for cells and labels */
|
||||
.week-row .cell,
|
||||
.week-row .week-label { height: var(--cell-h) }
|
||||
|
||||
header h1 { margin: 0; font-size: 1rem }
|
||||
|
||||
.dow-label,
|
||||
.week-label {
|
||||
/* Label cells */
|
||||
.dow-label, .week-label {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 100%;
|
||||
@@ -193,14 +187,38 @@ header h1 { margin: 0; font-size: 1rem }
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.dow { text-transform: uppercase; }
|
||||
/* 7-day grid inside each week row */
|
||||
.week-row > .days-grid {
|
||||
grid-column: 2 / span 7;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
grid-auto-rows: 1fr;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Overlay sitting above the day cells, same 7-col grid */
|
||||
.week-row > .days-grid > .week-overlay {
|
||||
margin-top: 1.2em;
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
grid-auto-rows: 1fr;
|
||||
z-index: 15;
|
||||
}
|
||||
|
||||
/* Day cells */
|
||||
.dow { text-transform: uppercase }
|
||||
.cell {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
padding: 0.25em;
|
||||
padding: .25em;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: var(--cell-h);
|
||||
@@ -208,110 +226,83 @@ header h1 { margin: 0; font-size: 1rem }
|
||||
cursor: pointer;
|
||||
transition: background-color .15s ease;
|
||||
}
|
||||
|
||||
.cell h1 {
|
||||
position: absolute;
|
||||
top: 0.25em;
|
||||
right: 0.25em;
|
||||
top: .25em;
|
||||
right: .25em;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
transition: background-color .15s ease;
|
||||
font-size: 1em;
|
||||
z-index: 10;
|
||||
}
|
||||
.cell:hover h1 { text-shadow: 0 0 .2em; }
|
||||
.cell:hover h1 { text-shadow: 0 0 .2em }
|
||||
|
||||
/* Event styles */
|
||||
/* Fixed heights for cells and labels */
|
||||
.week-row .cell, .week-row .week-label { height: var(--cell-h) }
|
||||
|
||||
/* Event (per-cell, if used) */
|
||||
.event {
|
||||
font-size: 0.75em;
|
||||
padding: 0.1em 0.3em;
|
||||
margin: 0.1em 0;
|
||||
border-radius: 0.2em;
|
||||
font-size: .75em;
|
||||
padding: .1em .3em;
|
||||
margin: .1em 0;
|
||||
border-radius: .2em;
|
||||
color: white;
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
width: 100%;
|
||||
max-width: calc(100% - 0.5em);
|
||||
max-width: calc(100% - .5em);
|
||||
line-height: 1.2;
|
||||
cursor: pointer;
|
||||
z-index: 5;
|
||||
}
|
||||
.event:hover { opacity: .8 }
|
||||
|
||||
.event:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* Spanning event styles */
|
||||
/* Spanning events in the overlay (grid-positioned, not absolutely measured) */
|
||||
.event-span {
|
||||
font-size: 0.75em;
|
||||
padding: 0.1em 0.3em;
|
||||
border-radius: 0.2em;
|
||||
font-size: .75em;
|
||||
padding: 0 .5em;
|
||||
border-radius: .4em;
|
||||
color: white;
|
||||
font-weight: 500;
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
line-height: 1.2;
|
||||
cursor: pointer;
|
||||
transition: opacity 0.15s ease;
|
||||
|
||||
/* Calculate position and width using CSS variables and custom properties */
|
||||
left: calc(var(--label-w) + var(--start-day) * (100% - var(--label-w) - var(--overlay-w)) / 7);
|
||||
width: calc(var(--span-days) * (100% - var(--label-w) - var(--overlay-w)) / 7);
|
||||
}
|
||||
|
||||
.event-span:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.event-more {
|
||||
font-size: 0.7em;
|
||||
color: var(--muted);
|
||||
font-style: italic;
|
||||
margin-top: 0.1em;
|
||||
height: 1.2em;
|
||||
align-self: center; /* vertically center within the overlay row */
|
||||
justify-self: stretch; /* stretch across chosen grid columns */
|
||||
pointer-events: auto; /* clickable despite overlay having none */
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Selection styles */
|
||||
.weekend { color: var(--weekend) }
|
||||
.firstday { color: var(--firstday); text-shadow: 0 0 .1em rgba(var(--ink-rgb), .5) }
|
||||
|
||||
.today h1 {
|
||||
border-radius: 2em;
|
||||
border: .2em dotted var(--today);
|
||||
margin: -.2em;
|
||||
}
|
||||
|
||||
/* Selection */
|
||||
input {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: var(--ink);
|
||||
width: 11em;
|
||||
}
|
||||
label:has(input[value]) {
|
||||
display: block;
|
||||
}
|
||||
label:has(input[value]) { display: block }
|
||||
|
||||
.selected {
|
||||
background: var(--select) !important;
|
||||
border: 2px solid rgba(var(--ink-rgb), 0.3);
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
|
||||
background: var(--select);
|
||||
border: 2px solid rgba(var(--ink-rgb), .3);
|
||||
box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
|
||||
}
|
||||
.selected h1,
|
||||
:is(.range-start,.range-end,.range-middle,.range-single) h1 {
|
||||
background: transparent !important;
|
||||
color: var(--panel) !important;
|
||||
font-weight: 700;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
||||
.selected .event { opacity: .7 }
|
||||
|
||||
.today h1 {
|
||||
border-radius: 2em;
|
||||
background: var(--today);
|
||||
border: .2em solid var(--today);
|
||||
margin: -.2em;
|
||||
}
|
||||
|
||||
/* Ensure events don't interfere with selection visibility */
|
||||
.selected .event {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* Month labels in jogwheel column */
|
||||
.month-name-label {
|
||||
grid-column: -2 / -1;
|
||||
font-size: 2em;
|
||||
@@ -324,11 +315,9 @@ label:has(input[value]) {
|
||||
z-index: 15;
|
||||
overflow: visible;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
top: 0; right: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.month-name-label > span {
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
|
||||
Reference in New Issue
Block a user