diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-02-12 02:38:38 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-02-12 02:38:38 +0200 |
commit | c844723a2404f97421c14ed48bbb8fec9fa8f6b7 (patch) | |
tree | 0489d8c1cdc11514478e916b2275fb16357454bf /app/views/layouts/admin.html.haml | |
parent | 9511ec846d39ff57aca6ea2e82da47f04477078c (diff) | |
download | gitlab-ce-c844723a2404f97421c14ed48bbb8fec9fa8f6b7.tar.gz |
restyled main menu. move from left to top orientation
Diffstat (limited to 'app/views/layouts/admin.html.haml')
-rw-r--r-- | app/views/layouts/admin.html.haml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/app/views/layouts/admin.html.haml b/app/views/layouts/admin.html.haml index 18eb9972e40..d651a50c987 100644 --- a/app/views/layouts/admin.html.haml +++ b/app/views/layouts/admin.html.haml @@ -5,12 +5,10 @@ = render "layouts/flash" = render "layouts/head_panel", :title => "Admin area" .container-fluid - .sidebar - .fixed - %aside - = link_to "Users", admin_users_path, :class => controller.controller_name == "users" ? "current" : nil - = link_to "Projects", admin_projects_path, :class => controller.controller_name == "projects" ? "current" : nil - = link_to "Emails", admin_emails_path, :class => controller.controller_name == "mailer" ? "current" : nil - = link_to "Resque", "/info/resque" + %nav.main_menu + = link_to "Users", admin_users_path, :class => controller.controller_name == "users" ? "current" : nil + = link_to "Projects", admin_projects_path, :class => controller.controller_name == "projects" ? "current" : nil + = link_to "Emails", admin_emails_path, :class => controller.controller_name == "mailer" ? "current" : nil + = link_to "Resque", "/info/resque" .content= yield |