Commit 285398848f95e41aa4cfb727a5e23ff4e574786f

Authored by Valessio Brito
1 parent a66446ed

adjust position menu administration

Showing 2 changed files with 10 additions and 8 deletions   Show diff stats
style.css
... ... @@ -3510,11 +3510,9 @@ li.profile-activity-item.upload_image .activity-gallery-images-count-1 img { max
3510 3510  
3511 3511 #manage-admin {
3512 3512 position: relative;
3513   - float: right;
  3513 + float: left;
3514 3514 width: 150px;
3515   - margin-top: 10px;
3516   - margin-right: 10px;
3517   - z-index: 9;
  3515 + text-align: center;
3518 3516 }
3519 3517  
3520 3518 #manage-admin i {
... ... @@ -3529,8 +3527,8 @@ li.profile-activity-item.upload_image .activity-gallery-images-count-1 img { max
3529 3527  
3530 3528 #manage-admin ul {
3531 3529 width: 100%;
  3530 + top: 20px;
  3531 + text-align: left;
3532 3532 margin: 0px;
3533   - top: -10px;
3534   - padding-top: 30px;
3535   - z-index: 1;
  3533 + padding-left: 20px;
3536 3534 }
... ...
theme.js
... ... @@ -71,6 +71,10 @@ parent.prepend(people);
71 71 parent.prepend(communities);
72 72 parent.prepend(articles);
73 73  
74   -});
  74 +// menu administracao user
  75 +parent = jQuery('#user');
  76 +manageadmin = jQuery('#manage-admin');
  77 +parent.prepend(manageadmin);
75 78  
  79 +});
76 80  
... ...