<input type="checkbox" class="checkbox" />
<input type="button" class="button" value="Button" disabled="disabled" />
<input type="button" class="button" value="Button" />
.button,
.checkbox:checked ~ .button[disabled] {
display: none;
}
.button[disabled],
.checkbox:checked ~ .button {
display: inline;
}