DG MS; changed coloring of indicators; changed indicator precidence; added soup link
This commit is contained in:
parent
19d91908e3
commit
1256b6f3fc
3 changed files with 21 additions and 13 deletions
|
|
@ -18,13 +18,20 @@
|
|||
%li
|
||||
= link_to "Welcome", getting_started_path, :class => "home_selector"
|
||||
|
||||
.section
|
||||
%ul.left_nav
|
||||
%li
|
||||
%b
|
||||
= link_to "Soup", soup_path, :class => 'home_selector'
|
||||
|
||||
.section
|
||||
= render 'aspects/aspect_listings', :stream => @stream
|
||||
|
||||
.section
|
||||
%ul.left_nav
|
||||
.li
|
||||
%b= link_to t('.mentions'), mentions_path, :class => 'home_selector'
|
||||
%li
|
||||
%b
|
||||
= link_to t('.mentions'), mentions_path, :class => 'home_selector'
|
||||
|
||||
.section#followed_tags_listing
|
||||
= render 'tags/followed_tags_listings'
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class Stream::Soup < Stream::Base
|
|||
#emits an enum of the groups which the post appeared
|
||||
# :spotlight, :aspects, :tags, :mentioned
|
||||
def post_from_group(post)
|
||||
[:community_spotlight, :aspects, :followed_tags, :mentioned].collect do |source|
|
||||
[:mentioned, :aspects, :followed_tags, :community_spotlight].collect do |source|
|
||||
is_in?(source, post)
|
||||
end.compact
|
||||
end
|
||||
|
|
|
|||
|
|
@ -885,15 +885,15 @@ label
|
|||
:cursor pointer
|
||||
|
||||
#publisher
|
||||
|
||||
:z-index 1
|
||||
:color #999
|
||||
:position relative
|
||||
:margin
|
||||
:bottom 10px
|
||||
:top 0
|
||||
:bottom 0
|
||||
:padding 12px
|
||||
:top 0
|
||||
:bottom 22px
|
||||
:top 0
|
||||
|
||||
:border
|
||||
|
|
@ -3500,15 +3500,16 @@ ul#getting_started
|
|||
:height 4px
|
||||
:float right
|
||||
|
||||
.aspects_soup
|
||||
.indicator
|
||||
:background-color red
|
||||
|
||||
.community_spotlight_soup
|
||||
.indicator
|
||||
:background-color green
|
||||
.mentioned_soup
|
||||
.indicator
|
||||
:background-color blue
|
||||
:background-color #DE5099
|
||||
.followed_tags_soup
|
||||
.indicator
|
||||
:background-color yellow
|
||||
:background-color $blue
|
||||
.aspects_soup
|
||||
.indicator
|
||||
:background-color $green
|
||||
.mentioned_soup
|
||||
.indicator
|
||||
:background-color #E3E856
|
||||
|
|
|
|||
Loading…
Reference in a new issue