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 */ /*this doesn't seem to be used in the jquery example at all. Its getting in the way */
#todo-count span { #todo-count span {
font-weight: inherit; font-weight: inherit;
......
...@@ -57,10 +57,6 @@ body { ...@@ -57,10 +57,6 @@ body {
font-style: italic; font-style: italic;
} }
#main {
display: none;
}
#todo-list { #todo-list {
margin: 10px 0; margin: 10px 0;
padding: 0; padding: 0;
...@@ -128,7 +124,6 @@ body { ...@@ -128,7 +124,6 @@ body {
} }
#todoapp footer { #todoapp footer {
display: none;
margin: 0 -20px -20px -20px; margin: 0 -20px -20px -20px;
overflow: hidden; overflow: hidden;
color: #555555; color: #555555;
...@@ -144,7 +139,6 @@ body { ...@@ -144,7 +139,6 @@ body {
} }
#clear-completed { #clear-completed {
display: none;
float: right; float: right;
line-height: 20px; line-height: 20px;
text-decoration: none; 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