Skip to content

Commit

Permalink
fixed tick boxes not showing up in todomvc example
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsinhassaan authored and mike-thompson-day8 committed Jun 23, 2022
1 parent 69cf395 commit 032d93e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/todomvc/resources/public/todos.css
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,11 @@ label[for='toggle-all'] {
}

#todo-list li .toggle:after {
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#ededed" stroke-width="3"/></svg>');
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="rgb(237,237,237)" stroke-width="3"/></svg>');
}

#todo-list li .toggle:checked:after {
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#bddad5" stroke-width="3"/><path fill="#5dc2af" d="M72 25L42 71 27 56l-4 4 20 20 34-52z"/></svg>');
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="rgb(189,218,213)" stroke-width="3"/><path fill="rgb(93,194,175)" d="M72 25L42 71 27 56l-4 4 20 20 34-52z"/></svg>');
}

#todo-list li label {
Expand Down

0 comments on commit 032d93e

Please sign in to comment.