moved hoverable class from <li> to <a>
This commit is contained in:
parent
648a45b4d6
commit
f9564af0ba
1 changed files with 6 additions and 7 deletions
|
|
@ -2,7 +2,6 @@
|
||||||
-# licensed under the Affero General Public License version 3 or later. See
|
-# licensed under the Affero General Public License version 3 or later. See
|
||||||
-# the COPYRIGHT file.
|
-# the COPYRIGHT file.
|
||||||
|
|
||||||
|
|
||||||
- content_for :head do
|
- content_for :head do
|
||||||
= javascript_include_tag :home
|
= javascript_include_tag :home
|
||||||
|
|
||||||
|
|
@ -29,12 +28,12 @@
|
||||||
= link_to current_user.first_name, local_or_remote_person_path(current_user.person)
|
= link_to current_user.first_name, local_or_remote_person_path(current_user.person)
|
||||||
|
|
||||||
%ul#stream_selection
|
%ul#stream_selection
|
||||||
%li.hoverable{:data => {:stream => 'stream'}}
|
%li{:data => {:stream => 'stream'}}
|
||||||
= link_to t("streams.multi.title"), stream_path, :rel => 'backbone'
|
= link_to t("streams.multi.title"), stream_path, :rel => 'backbone', :class => 'hoverable'
|
||||||
%li.hoverable{:data => {:stream => 'activity'}}
|
%li{:data => {:stream => 'activity'}}
|
||||||
= link_to t("streams.activity.title"), activity_stream_path, :rel => 'backbone'
|
= link_to t("streams.activity.title"), activity_stream_path, :rel => 'backbone', :class => 'hoverable'
|
||||||
%li.hoverable{:data => {:stream => 'mentions'}}
|
%li{:data => {:stream => 'mentions'}}
|
||||||
= link_to t('streams.mentions.title'), mentioned_stream_path, :rel => 'backbone'
|
= link_to t('streams.mentions.title'), mentioned_stream_path, :rel => 'backbone', :class => 'hoverable'
|
||||||
%li.all_aspects
|
%li.all_aspects
|
||||||
= render 'aspects/aspect_listings', :stream => @stream
|
= render 'aspects/aspect_listings', :stream => @stream
|
||||||
%li
|
%li
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue