Commit ac09504c authored by Christoph Burgdorf's avatar Christoph Burgdorf

removed some display:none 's according to the latest discussion here:

https://github.com/addyosmani/todomvc/pull/112
parent fc9b1792
/*hiding those elements by default is really getting into the anguluar way
as AngularJS's show directive will keep track of hiding/showing the elements for us*/
#main {
display: inherit;
}
#todoapp footer{
display: inherit;
}
#clear-completed{
display: inherit;
}
/*this doesn't seem to be used in the jquery example at all. Its getting in the way */
#todo-count span {
font-weight: inherit;
......
......@@ -57,10 +57,6 @@ body {
font-style: italic;
}
#main {
display: none;
}
#todo-list {
margin: 10px 0;
padding: 0;
......@@ -128,7 +124,6 @@ body {
}
#todoapp footer {
display: none;
margin: 0 -20px -20px -20px;
overflow: hidden;
color: #555555;
......@@ -144,7 +139,6 @@ body {
}
#clear-completed {
display: none;
float: right;
line-height: 20px;
text-decoration: none;
......
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