Skip to content

Commit

Permalink
Merge pull request #319 from jongund/checkbox
Browse files Browse the repository at this point in the history
Checkbox Example (Mixed State): Hide bullets in checkbox list
  • Loading branch information
jnurthen authored Mar 17, 2017
2 parents 3c6c0e2 + e7019fd commit f566b21
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/checkbox/checkbox-1/checkbox-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h2 id="ex_label">Example</h2>
<div id="ex1">
<h3>Sandwich Condiments</h3>
<div>
<ul>
<ul class="checkboxes">
<li><div role="checkbox" aria-checked="false" tabindex= "0">Lettuce</div></li>
<li><div role="checkbox" aria-checked="true" tabindex= "0">Tomato</div></li>
<li><div role="checkbox" aria-checked="false" tabindex= "0">Mustard</div></li>
Expand Down
6 changes: 6 additions & 0 deletions examples/checkbox/css/checkbox.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
ul.checkboxes {
list-style: none;
margin-left: 0;
padding-left: 1em;
}

[role="checkbox"] {
display: inline-block;
position: relative;
Expand Down

0 comments on commit f566b21

Please sign in to comment.