mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 12:12:30 +00:00
32 lines
726 B
CSS
32 lines
726 B
CSS
div.sheet-option-bar {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
width: 100%;
|
|
max-width: 860px;
|
|
min-width: 560px;
|
|
height: fit-content;
|
|
background: #1f1f1f;
|
|
color: whitesmoke;
|
|
padding: 0 2px 0;
|
|
margin-bottom: 5px;
|
|
}
|
|
body.sheet-darkmode div.sheet-option-bar {
|
|
background: lightgray;
|
|
color: black;
|
|
}
|
|
.sheet-set-toggle-reset {
|
|
color: whitesmoke !important;
|
|
}
|
|
body.sheet-darkmode .sheet-set-toggle-reset {
|
|
color: black !important;
|
|
}
|
|
.sheet-set-toggle-reset:hover,
|
|
body.sheet-darkmode .sheet-set-toggle-reset:hover {
|
|
color: royalblue !important;
|
|
}
|
|
|
|
.sheet-set-toggle-control:not([value^="@{set_"]) ~ .sheet-set-toggle {
|
|
display: none;
|
|
} |