Redesign 1 bcrypt #226

Merged
bones7242 merged 156 commits from redesign-1-bcrypt into master 2017-10-30 15:55:14 +01:00
2 changed files with 8 additions and 4 deletions
Showing only changes of commit 5ef70efebc - Show all commits

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>