Commit a8485af9590b662a11eb73fbeb3de7ee1c96f8cf
1 parent
be81703b
Exists in
master
and in
29 other branches
ActionItem0: bug fix login_box and register_box
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@389 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
2 changed files
with
6 additions
and
7 deletions
Show diff stats
app/views/layouts/application.rhtml
1 | 1 | <html> |
2 | 2 | <head> |
3 | 3 | <%= javascript_include_tag :defaults %> |
4 | - <%= stylesheet_link_tag 'common' %> | |
5 | 4 | <%= design_all_header_tags %> |
6 | 5 | <%= javascript_include_tag 'comatose_admin' %> |
7 | 6 | <% if params[:controller] == 'comatose_admin' %> |
8 | 7 | <%= stylesheet_link_tag 'comatose_admin' %> |
9 | 8 | <% end %> |
10 | - | |
9 | + <%= stylesheet_link_tag 'common' %> | |
11 | 10 | </head> |
12 | 11 | |
13 | 12 | <body> |
... | ... | @@ -22,7 +21,7 @@ |
22 | 21 | </div> |
23 | 22 | <% end %> |
24 | 23 | <div id="frame"> |
25 | - <div id="menu"> | |
24 | + <div id="menu_accessibility"> | |
26 | 25 | <%= _('Skip to:') %> |
27 | 26 | <a href="#main_content"><%= _('Content') %></a> | |
28 | 27 | <a href="#sidebar"><%= _('Navigation') %></a> | |
... | ... | @@ -54,7 +53,7 @@ |
54 | 53 | </div> |
55 | 54 | </div> |
56 | 55 | </div> |
57 | - | |
58 | - </body> | |
56 | + <%= image_tag 'loading.gif', :id => 'spinner', :style => "display:none; float:right;", :alt => _('Image for Loading...') %> | |
57 | + </body> | |
59 | 58 | |
60 | 59 | </html> | ... | ... |
public/stylesheets/common.css
... | ... | @@ -51,11 +51,11 @@ padding: 0px 5px 0px 5px !important ; |
51 | 51 | text-decoration: underline !important ; |
52 | 52 | } |
53 | 53 | |
54 | -#user_links { | |
54 | +#user_links, #login_box { | |
55 | 55 | margin-left: 290px !important ; |
56 | 56 | } |
57 | 57 | |
58 | -#user_links a:hover, #user_links a:focus { | |
58 | +#user_links a:hover, #user_links a:focus, #login_box a:hover, #login_box a:focus, #register_box a:hover, #register_box a:focus { | |
59 | 59 | color: #dfdfdf !important ; |
60 | 60 | text-decoration: none !important ; |
61 | 61 | } | ... | ... |