mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Fix repeater item edit form to be static and full size instead of absolute+scrolltop
This commit is contained in:
@@ -691,18 +691,10 @@ label.sheet-form-checkbox {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sheet-toggle:checked~.sheet-toggle-unchecked {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sheet-toggle:not(:checked)~.sheet-toggle-checked {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sheet-toggle:not(:checked)~.sheet-toggle-unchecked {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sheet-sd .repcontainer.editmode .repitem .sheet-fieldset-item {
|
||||
opacity: 0.3;
|
||||
}
|
||||
@@ -952,25 +944,24 @@ label.sheet-form-checkbox {
|
||||
background-color: #f8f9fa;
|
||||
border: 2px solid #dee2e6;
|
||||
border-radius: 0px;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
margin: 0;
|
||||
box-shadow: 0;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
box-sizing: border-box;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10000;
|
||||
height: calc(100vh - 50px);
|
||||
max-height: calc(100vh - 50px);
|
||||
overflow: auto;
|
||||
margin: 20px auto;
|
||||
max-width: 95%;
|
||||
height: 100%;
|
||||
max-height: 100%;
|
||||
overflow: auto;
|
||||
margin: 0 auto;
|
||||
max-width: 100%;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.sheet-darkmode .sheet-sd .sheet-toggle-checked {
|
||||
background-color: #2d3748;
|
||||
border-color: #4a5568;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.sheet-sd .sheet-form {
|
||||
|
||||
Reference in New Issue
Block a user