summaryrefslogtreecommitdiff
path: root/app/views/groups
diff options
context:
space:
mode:
authortauriedavis <taurie@gitlab.com>2016-11-08 12:48:28 -0800
committertauriedavis <taurie@gitlab.com>2016-11-09 17:24:17 -0800
commitd81d67bae44f189adddd1f4fb489a44e274e21b5 (patch)
treeb442ecfe14951d96edf9a4064e4cbcbd3e8c207c /app/views/groups
parentc6d010986724faf10b46453d66eaca38a948fabf (diff)
downloadgitlab-ce-d81d67bae44f189adddd1f4fb489a44e274e21b5.tar.gz
19205 Redesign group page header to match new navigation19205-group-header-redesign
Diffstat (limited to 'app/views/groups')
-rw-r--r--app/views/groups/show.html.haml26
1 files changed, 12 insertions, 14 deletions
diff --git a/app/views/groups/show.html.haml b/app/views/groups/show.html.haml
index b439b40a75a..52ce26a20b1 100644
--- a/app/views/groups/show.html.haml
+++ b/app/views/groups/show.html.haml
@@ -4,25 +4,23 @@
- if current_user
= auto_discovery_link_tag(:atom, group_url(@group, format: :atom, private_token: current_user.private_token), title: "#{@group.name} activity")
-.cover-block.groups-cover-block
+.group-home-panel.text-center
%div{ class: container_class }
.avatar-container.s70.group-avatar
= image_tag group_icon(@group), class: "avatar s70 avatar-tile"
- .group-info
- .cover-title
- %h1
- @#{@group.path}
- %span.visibility-icon.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) }
- = visibility_level_icon(@group.visibility_level, fw: false)
+ %h1.group-title
+ @#{@group.path}
+ %span.visibility-icon.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) }
+ = visibility_level_icon(@group.visibility_level, fw: false)
- .group-right-buttons.btn-group
- - if current_user
- .pull-left.append-right-10= render 'shared/members/access_request_buttons', source: @group
- = render 'shared/notifications/button', notification_setting: @notification_setting
+ - if @group.description.present?
+ .group-home-desc
+ = markdown_field(@group, :description)
- - if @group.description.present?
- .cover-desc.description
- = markdown_field(@group, :description)
+ - if current_user
+ .group-buttons
+ = render 'shared/members/access_request_buttons', source: @group
+ = render 'shared/notifications/button', notification_setting: @notification_setting
%div.groups-header{ class: container_class }
.top-area