Skip to content
Snippets Groups Projects
Commit 68c59f87 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

fix up colors on mode toggle and make names of our checkboxes for recipients clickable.

parent f500c682
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@
<div class="Button-group">
<!-- TODO: hardcoding values :( -->
<button class="Button" ng-class="{'Button--active': report.mode === 1}" ng-click="report.mode = 1" ng-disabled>Active</button>
<button class="Button" ng-class="{'Button--disabled': report.mode === 2}" ng-click="report.mode = 2">Disabled</button>
<button class="Button" ng-class="{'Button--danger': report.mode === 2}" ng-click="report.mode = 2">Disabled</button>
</div>
</div>
</div>
......@@ -44,7 +44,7 @@
<mb-form-label form="form" display-name="Recipients" field-name="recipients"></mb-form-label>
<ul class="Checkbox-group Form-offset">
<li ng-repeat="user in form_input.users">
<input type="checkbox" ng-model="user.incl" /> {{user.name}}
<input type="checkbox" id="{{user.id}}" ng-model="user.incl" /> <label for="{{user.id}}">{{user.name}}</label>
</li>
</li>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment