diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-05-29 18:57:27 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-05-29 18:57:27 +0300 |
commit | a2b3eb134a5549bf9c80a8ee0f950a4c67777413 (patch) | |
tree | 03d465f409189c30f20fa5b4161140f10cc2db7d /app/views/admin | |
parent | 38ff5d1ab9d9eb5d09bbc8498410b770445b698e (diff) | |
download | gitlab-ce-a2b3eb134a5549bf9c80a8ee0f950a4c67777413.tar.gz |
Move from ui-box to panels
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/background_jobs/show.html.haml | 2 | ||||
-rw-r--r-- | app/views/admin/groups/show.html.haml | 2 | ||||
-rw-r--r-- | app/views/admin/projects/show.html.haml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/background_jobs/show.html.haml b/app/views/admin/background_jobs/show.html.haml index dcb3bfcda6e..c79d1280dd9 100644 --- a/app/views/admin/background_jobs/show.html.haml +++ b/app/views/admin/background_jobs/show.html.haml @@ -5,7 +5,7 @@ .panel.panel-default .panel-heading Sidekiq running processes - .body + .panel-body - if @sidekiq_processes.empty? %h4.cred %i.icon-warning-sign diff --git a/app/views/admin/groups/show.html.haml b/app/views/admin/groups/show.html.haml index 2b7dbfad59d..183203aac75 100644 --- a/app/views/admin/groups/show.html.haml +++ b/app/views/admin/groups/show.html.haml @@ -48,7 +48,7 @@ .panel.panel-default .panel-heading Add user(s) to the group: - .body.form-holder + .panel-body.form-holder %p.light Read more about project permissions %strong= link_to "here", help_page_path("permissions", "permissions"), class: "vlink" diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml index 3fe188a57ea..3f25eb7fdb9 100644 --- a/app/views/admin/projects/show.html.haml +++ b/app/views/admin/projects/show.html.haml @@ -78,7 +78,7 @@ .panel.panel-default .panel-heading Transfer project - .body + .panel-body = form_for @project, url: transfer_admin_project_path(@project), method: :put, html: { class: 'form-horizontal' } do |f| .form-group = f.label :namespace_id, "Namespace", class: 'control-label' |