fixed stream bull
This commit is contained in:
parent
ee9acc5c82
commit
a0a0b9d0ad
3 changed files with 27 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
%h3 your friends
|
||||
%ul#stream
|
||||
%ul#friend_stream
|
||||
- for friend in @friends
|
||||
= link_to friend.real_name, friend_path(friend)
|
||||
%br
|
||||
|
|
|
|||
|
|
@ -121,6 +121,17 @@ ul#stream {
|
|||
border-bottom: 1px solid #f1f1f1;
|
||||
margin-bottom: 5px; }
|
||||
|
||||
ul#friend_stream {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #666666;
|
||||
font-size: 110%; }
|
||||
ul#friend_stream > li {
|
||||
list-style: none;
|
||||
padding: 1em 0;
|
||||
border-bottom: 1px solid #f1f1f1;
|
||||
margin-bottom: 5px; }
|
||||
|
||||
li.message {
|
||||
position: relative;
|
||||
line-height: 140%;
|
||||
|
|
|
|||
|
|
@ -135,6 +135,21 @@ ul#stream
|
|||
:bottom 1px solid #f1f1f1
|
||||
:margin-bottom 5px
|
||||
|
||||
ul#friend_stream
|
||||
:margin 0
|
||||
:padding 0
|
||||
:color #666
|
||||
:font
|
||||
:size 110%
|
||||
|
||||
> li
|
||||
:list-style none
|
||||
:padding 1em 0
|
||||
:border
|
||||
:bottom 1px solid #f1f1f1
|
||||
:margin-bottom 5px
|
||||
|
||||
|
||||
li.message
|
||||
:position relative
|
||||
:line-height 140%
|
||||
|
|
|
|||
Loading…
Reference in a new issue