added line delimiters for post stream on dashboard
This commit is contained in:
parent
ed26c82be4
commit
c63eac0fd9
3 changed files with 31 additions and 3 deletions
|
|
@ -1,9 +1,7 @@
|
||||||
- title "Dashboard"
|
- title "Dashboard"
|
||||||
|
|
||||||
%ul
|
%ul#stream
|
||||||
- for post in @posts
|
- for post in @posts
|
||||||
%li
|
%li
|
||||||
= render "shared/post", :post =>post
|
= render "shared/post", :post =>post
|
||||||
%br
|
|
||||||
%br
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,3 +63,16 @@ h4 {
|
||||||
#header ul.nav li {
|
#header ul.nav li {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin-right: 1em; }
|
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; }
|
||||||
|
|
|
||||||
|
|
@ -77,3 +77,20 @@ h4
|
||||||
:margin
|
:margin
|
||||||
:right 1em
|
: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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue