Commit cc7dcc2199eaea349edb0a94b3b05905c47f627f
1 parent
fbbdd262
Exists in
master
and in
3 other branches
fix login div
Showing
2 changed files
with
5 additions
and
7 deletions
Show diff stats
cabecalho.css
... | ... | @@ -756,18 +756,14 @@ a.btn_control_panel:hover ul li{display: block;} |
756 | 756 | .btn_control_panel #user span.not-logged-in, |
757 | 757 | .btn_control_panel #user span.not-logged-in span { |
758 | 758 | margin: 5px 5px 5px 5px; |
759 | -border: 0px solid #808080; | |
760 | -border-radius: 5px; | |
759 | +border: 0; | |
761 | 760 | background-color: transparent; |
762 | 761 | padding: 3px; |
763 | 762 | color: #333; |
764 | -display: inline-block; | |
765 | 763 | } |
766 | 764 | |
767 | 765 | #top-bar .layout_user #user .not-logged-in a{text-decoration: none;} |
768 | 766 | |
769 | -#top-bar .layout_user #user .not-logged-in {padding-left: 35px;} | |
770 | - | |
771 | 767 | /*info do usuário no espaço do usuário*/ |
772 | 768 | #navigation-control{ |
773 | 769 | height: 100%; |
... | ... | @@ -1190,5 +1186,7 @@ float: right; |
1190 | 1186 | background: none; |
1191 | 1187 | padding-left: 0; |
1192 | 1188 | } |
1193 | -#control_panel_bar .control-panel a:hover { | |
1189 | + | |
1190 | +.controller-profile_editor a.icon-new { | |
1191 | + background-image: url(../../../images/control-panel/text-editor.png); | |
1194 | 1192 | } | ... | ... |
user_menu.html.erb
... | ... | @@ -10,11 +10,11 @@ |
10 | 10 | <%#= render :partial => 'layouts/user' %> |
11 | 11 | <div class="menu_user"> |
12 | 12 | <ul class="activity_menu"> |
13 | - <li class="activity_menu_item"><%= link_to _("Agenda"), url_for(:controller => :profile, :action => :events, :profile => person.identifier) %></li> | |
14 | 13 | <li class="activity_menu_item"><%= link_to _("Network"), url_for(person.public_profile_url.merge(:anchor => 'profile-network')) %></li> |
15 | 14 | <li class="activity_menu_item"><%= link_to _("Wall"), url_for(person.public_profile_url.merge(:anchor => 'profile-wall')) %></li> |
16 | 15 | <li class="activity_menu_item"><%= link_to _("Friends"), url_for(:controller => :profile, :action => :friends, :profile => person.identifier) %></li> |
17 | 16 | <li class="activity_menu_item"><%= link_to _("Communities"), url_for(:controller => :profile, :action => :communities, :profile => person.identifier) %></li> |
17 | + <li class="activity_menu_item"><%= link_to _("Agenda"), url_for(:controller => :profile, :action => :events, :profile => person.identifier) %></li> | |
18 | 18 | </ul> |
19 | 19 | </div> |
20 | 20 | </div> | ... | ... |