added line delimiters for post stream on dashboard

This commit is contained in:
danielvincent 2010-06-15 22:34:08 -07:00
parent ed26c82be4
commit c63eac0fd9
3 changed files with 31 additions and 3 deletions

View file

@ -1,9 +1,7 @@
- title "Dashboard"
%ul
%ul#stream
- for post in @posts
%li
= render "shared/post", :post =>post
%br
%br

View file

@ -63,3 +63,16 @@ h4 {
#header ul.nav li {
display: inline;
margin-right: 1em; }
ul#stream {
margin: 0;
padding: 0;
list-style: none; }
ul#stream li {
list-style: none; }
ul#stream > li {
padding: 2em 0;
border-bottom: 1px solid #666666; }
ul#stream > li > ul {
padding: 0;
margin: 0; }

View file

@ -77,3 +77,20 @@ h4
:margin
:right 1em
ul#stream
:margin 0
:padding 0
:list-style none
li
:list-style none
> li
:padding 2em 0
:border
:bottom 1px solid #666
> ul
:padding 0
:margin 0