diff --git a/Changelog.md b/Changelog.md index eb8b1c8d3c7da985dd3dc2dc2a71c832737bd6f9..92f823600cf7dfe411f496e91207d18425f7dd26 100644 --- a/Changelog.md +++ b/Changelog.md @@ -74,6 +74,7 @@ With the port to Bootstrap 3, app/views/terms/default.haml has a new structure. * Bring peeping Tom on the 404 page back [#6226](https://github.com/diaspora/diaspora/pull/6226) * Fix mobile photos index page [#6243](https://github.com/diaspora/diaspora/pull/6243) * Fix conversations view with no contacts [#6266](https://github.com/diaspora/diaspora/pull/6266) +* Links in the left sidebar are now clickable on full width [#6267](https://github.com/diaspora/diaspora/pull/6267) ## Features diff --git a/app/views/streams/main_stream.html.haml b/app/views/streams/main_stream.html.haml index 2d7949fd6f12ac12d3435093d5341e7f1f8083e2..1effeb5b18390d0c588e825f4f375ea199ca125b 100644 --- a/app/views/streams/main_stream.html.haml +++ b/app/views/streams/main_stream.html.haml @@ -29,16 +29,16 @@ = link_to current_user.first_name, local_or_remote_person_path(current_user.person) %ul#stream_selection - %li.hoverable{data: {stream: 'stream'}} - = link_to t("streams.multi.title"), stream_path, rel: 'backbone' - %li.hoverable{data: {stream: 'activity'}} - = link_to t("streams.activity.title"), activity_stream_path, rel: 'backbone' - %li.hoverable{data: {stream: 'mentions'}} - = link_to t('streams.mentions.title'), mentioned_stream_path, rel: 'backbone' + %li{data: {stream: "stream"}} + = link_to t("streams.multi.title"), stream_path, rel: "backbone", class: "hoverable" + %li{data: {stream: "activity"}} + = link_to t("streams.activity.title"), activity_stream_path, rel: "backbone", class: "hoverable" + %li{data: {stream: "mentions"}} + = link_to t("streams.mentions.title"), mentioned_stream_path, rel: "backbone", class: "hoverable" %li.all_aspects - = render 'aspects/aspect_listings', stream: @stream + = render "aspects/aspect_listings", stream: @stream %li - = render 'tags/followed_tags_listings' + = render "tags/followed_tags_listings" .col-md-6 #aspect_stream_container.stream_container