Made a fair bit of progress with the calendar editor.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user