Commit 2ca2a83b authored by Aaron Boushley's avatar Aaron Boushley

Merge branch 'structure_reorganization' of github.com:addyosmani/todomvc into...

Merge branch 'structure_reorganization' of github.com:addyosmani/todomvc into structure_reorganization
parents 7964e143 4086c9d3
......@@ -78,7 +78,7 @@ body {
border-bottom: none;
}
#todo-list li.done span {
#todo-list li.done label {
color: #777777;
text-decoration: line-through;
}
......@@ -86,7 +86,7 @@ body {
#todo-list li .destroy {
display: none;
position: absolute;
top: 16px;
top: 20px;
right: 10px;
cursor: pointer;
width: 20px;
......@@ -119,7 +119,7 @@ body {
display: none;
}
#todo-list li .view span {
#todo-list li .view label {
word-break: break-word;
}
......
......@@ -19,7 +19,7 @@
<li class="done">
<div class="view">
<input class="toggle" type="checkbox" checked>
<span>Create a TodoMVC template</span>
<label>Create a TodoMVC template</label>
<a class="destroy"></a>
</div>
<input class="edit" type="text" value="Create a TodoMVC template">
......@@ -27,7 +27,7 @@
<li>
<div class="view">
<input class="toggle" type="checkbox">
<span>Rule the web</span>
<label>Rule the web</label>
<a class="destroy"></a>
</div>
<input class="edit" type="text" value="Rule the web">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment