added pointer cursor to radios

This commit is contained in:
bill bittner 2017-10-10 10:54:51 -07:00
parent 9fe484a85c
commit 5ef70efebc
2 changed files with 8 additions and 4 deletions

View file

@ -250,6 +250,10 @@ option {
z-index: -1;
}
.input-radio, .label--pointer {
cursor: pointer;
}
.input-file-label {
color: dodgerblue;
text-decoration: underline;

View file

@ -2,10 +2,10 @@
<div class="row">
<div class="column column--10">
<form>
<input type="radio" name="anonymous-or-channel" id="anonymous-select" class="" value="anonymous" {{#unless user}}checked {{/unless}} onchange="toggleChannel(event.target.value)"/>
<label class="label" for="anonymous-select">Anonymous</label>
<input type="radio" name="anonymous-or-channel" id="in-a-channel-select" class="" value="in a channel" {{#if user}}checked {{/if}} onchange="toggleChannel(event.target.value)"/>
<label class="label" for="in-a-channel-select">In a channel</label>
<input type="radio" name="anonymous-or-channel" id="anonymous-select" class="input-radio" value="anonymous" {{#unless user}}checked {{/unless}} onchange="toggleChannel(event.target.value)"/>
<label class="label label--pointer" for="anonymous-select">Anonymous</label>
<input type="radio" name="anonymous-or-channel" id="in-a-channel-select" class="input-radio" value="in a channel" {{#if user}}checked {{/if}} onchange="toggleChannel(event.target.value)"/>
<label class="label label--pointer" for="in-a-channel-select">In a channel</label>
</form>
</div>
</div>