Skip to content

Commit

Permalink
set list-style=none
Browse files Browse the repository at this point in the history
  • Loading branch information
jongund committed Mar 15, 2017
1 parent b655696 commit e7019fd
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 e7019fd

Please sign in to comment.