
Hello Roll20 Community! I've been trying to figure out how to change an (action) button to take on a depressed look...no not in a need some Prozac way, but to look like the button remains depressed when clicked on. After reading up on CSS and a lot of trial and error, I'm of the mind now that the only way to achieve this is with hacky checkbox magic. The legit button approach seems like it would be much cleaner and easier, just can't seem to make it work. I've also tried using a CSS button with no love. Why does Roll20 hate me?! Examples of may vain and vexing attempts: CSS: button.sheet-test {
background: #ededed;
padding: 10px 30px;
border-radius: 3px;
cursor: pointer;
}
button.sheet-test:active {
background: #e5e5e5;
-webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
-moz-box-shadow: inset 0px 0px 5px #c1c1c1;
box-shadow: inset 0px 0px 5px #c1c1c1;
outline: none;
} HTML: <div><button type="action" class="sheet-test" name="act_test"><span>Test</span></div> The button clicks as per usual...just doesn't stay down! :(