Commit 8fc70436fd8993dceab0949f414f73576c6b0e4e

Authored by AntonioTerceiro
1 parent ed7b126e

ActionItem0: adding link to edit_template



git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@343 3f533792-8f58-4932-b0fe-aaf55b0a4547
app/helpers/application_helper.rb
... ... @@ -94,6 +94,7 @@ module ApplicationHelper
94 94 ( link_to(_('My accont'), { :controller => 'account' }) ),
95 95 ( link_to_profile(_('My home page')) ),
96 96 ( link_to_cms(_('Manage content')) ),
  97 + ( link_to (_('Manage layout')), :controller => 'edit_template' ),
97 98 ( link_to(_('My enterprises'), { :controller => 'enterprise' }) ),
98 99 ].join("\n")
99 100 content_tag('span', links, :id => 'user_links')
... ...
public/designs/themes/default/default.css
1 1 #frame {
2 2 background-color: white;
3 3 }
  4 +
  5 +a img {
  6 + border: 2px solid transparent;
  7 +}
  8 +a:hover img {
  9 + border: 2px solid #aa0;
  10 +}
... ...