mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-01 12:42:32 +00:00
40 lines
671 B
CSS
40 lines
671 B
CSS
button[type='roll'] {
|
|
background-color: transparent;
|
|
color: rgb(64, 64, 64);
|
|
border: none;
|
|
font-size: 1em !important;
|
|
text-align: left;
|
|
background-image: none;
|
|
text-shadow: none;
|
|
box-shadow: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
button[type='roll']::before {
|
|
content: '' !important;
|
|
}
|
|
|
|
button[type='roll']:hover,
|
|
input[type='checkbox'].sheet-roll-trigger:hover + span {
|
|
color: #3155a4;
|
|
}
|
|
|
|
.sheet-roll-trigger {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
input[type='checkbox'].sheet-roll-trigger {
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|