Updates mock event data and adds logging

Updates mock event data to reflect future dates for testing purposes.

Adds console logging in various managers to aid in debugging and understanding the event loading and rendering process.
Specifically, logs the number of loaded events, the first and last event details, and information about event rendering and time axis creation.

Also, adds execution permission for PowerShell scripts in the .claude settings.
This commit is contained in:
Janus Knudsen 2025-08-02 00:28:45 +02:00
parent c510994ca2
commit f29613e55f
7 changed files with 66 additions and 73 deletions

View file

@ -1,50 +1,4 @@
/* Base CSS */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* Grid measurements */
--hour-height: 60px;
--minute-height: 1px;
--snap-interval: 15;
--day-column-min-width: 250px;
--week-days: 7;
/* Time boundaries */
--day-start-hour: 7;
--day-end-hour: 19;
--work-start-hour: 8;
--work-end-hour: 17;
/* Colors */
--color-primary: #2196f3;
--color-grid-line: #e0e0e0;
--color-grid-line-light: rgba(0, 0, 0, 0.03);
--color-work-hours: rgba(0, 100, 0, 0.02);
--color-current-time: #ff0000;
/* Event colors */
--color-event-meeting: #e3f2fd;
--color-event-meeting-border: #2196f3;
--color-event-meal: #fff3e0;
--color-event-meal-border: #ff9800;
--color-event-work: #f3e5f5;
--color-event-work-border: #9c27b0;
/* UI colors */
--color-background: #ffffff;
--color-surface: #f5f5f5;
--color-text: #333333;
--color-text-secondary: #666666;
--color-border: #e0e0e0;
/* Shadows */
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Base CSS - Variables are defined in calendar-base-css.css */
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;