diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 6e14e34..834836a 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -94,6 +94,7 @@ module ApplicationHelper ( link_to(_('My accont'), { :controller => 'account' }) ), ( link_to_profile(_('My home page')) ), ( link_to_cms(_('Manage content')) ), + ( link_to (_('Manage layout')), :controller => 'edit_template' ), ( link_to(_('My enterprises'), { :controller => 'enterprise' }) ), ].join("\n") content_tag('span', links, :id => 'user_links') diff --git a/public/designs/themes/default/default.css b/public/designs/themes/default/default.css index bd1d1fd..f890c46 100644 --- a/public/designs/themes/default/default.css +++ b/public/designs/themes/default/default.css @@ -1,3 +1,10 @@ #frame { background-color: white; } + +a img { + border: 2px solid transparent; +} +a:hover img { + border: 2px solid #aa0; +} -- libgit2 0.21.2