mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 04:02:29 +00:00
24 lines
556 B
CSS
24 lines
556 B
CSS
/* Overwrite Roll20 base styling */
|
|
details > summary:first-of-type {
|
|
display: list-item;
|
|
}
|
|
|
|
/* Fix action buttons in repeating tables */
|
|
div.repcontainer:not(.editmode) div.repitem td button[type="action"],
|
|
div.repcontainer:not(.editmode) div.repitem th button[type="action"] {
|
|
position: relative;
|
|
}
|
|
|
|
/* Dark Mode override */
|
|
.sheet-darkmode .charsheet label {
|
|
color: #333;
|
|
}
|
|
|
|
/* Fix background color so active fields can be differentiated from read-only and disabled fields */
|
|
input,
|
|
button,
|
|
select,
|
|
textarea {
|
|
background-color: white;
|
|
}
|