Skip to content

Commit

Permalink
Add label to user board options for checkbox options.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiswa committed Dec 4, 2015
1 parent 4deefd8 commit 42e610a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions css/styles.css
Expand Up @@ -547,6 +547,9 @@ span.filter {
float: left;
margin-bottom: 1em;
}
.board-options label {
font-weight: normal;
}
#changeUserSettings hr, .board-options hr {
clear: both;
}
Expand Down
10 changes: 6 additions & 4 deletions partials/settingsBoardUserOptions.html
Expand Up @@ -7,14 +7,16 @@ <h4>My Board Options</h4>
</select>
</p>
<p class="form-group form-inline">
Show animations?
<input type="checkbox" data-ng-model="currentUser.options.showAnimations"
<label>Show animations?
<input type="checkbox" data-ng-model="currentUser.options.showAnimations"
data-ng-change="saveOptions()">
</label>
</p>
<p class="form-group form-inline">
Show Assignee on item card?
<input type="checkbox" data-ng-model="currentUser.options.showAssignee"
<label>Show Assignee on item card?
<input type="checkbox" data-ng-model="currentUser.options.showAssignee"
data-ng-change="saveOptions()">
</label>
</p>
<hr>
</div>

0 comments on commit 42e610a

Please sign in to comment.