Made a fair bit of progress with the calendar editor.

This commit is contained in:
2025-07-02 17:40:47 +10:00
parent f8616ff819
commit b6d51c7cfa
3 changed files with 163 additions and 54 deletions

View File

@@ -1,7 +1,47 @@
.tabbody {
border-bottom: solid 1px rgb(222, 226, 230);
border-left: solid 1px rgb(222, 226, 230);
border-right: solid 1px rgb(222, 226, 230);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
body { display: none; }
.bounding-box {
border: solid 1px rgb(222, 226, 230);
border-radius: 10px;
padding: 10px;
margin-top: 10px;
height: 96vh;
overflow-y: scroll;
overflow-x: clip;
}
.selection td {
background-color: darkgrey;
color: white;
}
.tt {
font-family: monospace;
}
.modal-form-background {
background-color: white;
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
opacity: 0.8;
display: flex;
}
.modal-form {
background-color: transparent;
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
z-index: 3;
}
.modal-form-body {
background-color: #fff; /* optional: distinguish it */
padding: 2rem; /* optional: add spacing */
border-radius: 8px; /* optional: rounded corners */
box-shadow: 0 0 10px rgba(0,0,0,0.2); /* optional: subtle shadow */
opacity: 1;
z-index: 4;
}