fix: remove CSS left/right overrides preventing side-by-side events
The base .time-slot-event and .simple-view .time-slot-event CSS had left: 0 and right: 0 (with !important) which overrode the inline overlap layout positioning. Removed so events can be placed side by side when they overlap. v1.65.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ba4f1ca280
commit
c040dd982d
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "my-weekly-todo-list",
|
"name": "my-weekly-todo-list",
|
||||||
"version": "1.65.0",
|
"version": "1.65.1",
|
||||||
"description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
|
"description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -3016,8 +3016,6 @@ h3 {
|
|||||||
border-radius: 0 4px 4px 0;
|
border-radius: 0 4px 4px 0;
|
||||||
margin: 1px 0;
|
margin: 1px 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4256,8 +4254,7 @@ h3 {
|
|||||||
border-top: 1px solid #dadce0;
|
border-top: 1px solid #dadce0;
|
||||||
}
|
}
|
||||||
.simple-view .time-slot-event {
|
.simple-view .time-slot-event {
|
||||||
left: 0 !important;
|
/* overlap layout sets left/width dynamically */
|
||||||
right: 0 !important;
|
|
||||||
}
|
}
|
||||||
.simple-view .weekly-day-header {
|
.simple-view .weekly-day-header {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user