Updates to documentation, fixes for edit buttons in map shifts, and CORS for local dev and access

This commit is contained in:
2025-09-05 12:23:46 -06:00
parent 0f6043f554
commit 5b530cce4b
60 changed files with 1432 additions and 508 deletions

View File

@@ -99,6 +99,26 @@
margin: 0 0 10px 0;
}
/* Editing State for Shifts */
.shift-admin-item.editing {
border: 2px solid #a02c8d;
background-color: #f9f0f8;
}
.shift-admin-item.editing::before {
content: "EDITING";
position: absolute;
top: 5px;
right: 5px;
background: #a02c8d;
color: white;
padding: 2px 8px;
font-size: 11px;
border-radius: 3px;
font-weight: bold;
z-index: 1;
}
.shift-admin-item p {
margin: 5px 0;
color: var(--secondary-color);