mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Added a toggle to switch between Select and Input, on Background, Role, and Size, as requested here: https://app.roll20.net/forum/permalink/10817760/
35 lines
761 B
CSS
35 lines
761 B
CSS
.charsheet{
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
table td{
|
|
border: 1px solid black;
|
|
text-align: center;
|
|
}
|
|
|
|
table:first-child td:first-child{
|
|
background-color: #b2b2b2;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
.sheet-blackmenu{
|
|
background-color:#000000;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
}
|
|
.sheet-greymenu{
|
|
background-color:#b2b2b2;
|
|
text-align: center;
|
|
}
|
|
.charsheet button[type="action"].sheet-toggle {
|
|
background: transparent;
|
|
border: 0;
|
|
}
|
|
.charsheet input.sheet-input,
|
|
.charsheet select.sheet-select {
|
|
display:none;
|
|
}
|
|
.charsheet input[type="hidden"].sheet-toggle[value="0"] ~ select.sheet-select,
|
|
.charsheet input[type="hidden"].sheet-toggle[value="1"] ~ input.sheet-input {
|
|
display:inline;
|
|
} |