diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-12-17 21:04:24 +0000 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-12-17 21:04:24 +0000 |
commit | eee9228175a8d97b82f083e1f353176eb3981f10 (patch) | |
tree | 845a369b9620fc6bbb4948aa4eab167ce218d1a3 | |
parent | 37da7f2382fe1cfa226402b206086998a4484274 (diff) | |
parent | 6b1a662d3c1591c0e063f02b3658485bd1837c13 (diff) | |
download | gitlab-ce-eee9228175a8d97b82f083e1f353176eb3981f10.tar.gz |
Merge branch 'avoid-wrapped-clone-button' into 'master'
Re-align project title row and repo button containers
Closes #55287
See merge request gitlab-org/gitlab-ce!23833
-rw-r--r-- | app/views/projects/_home_panel.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/_home_panel.html.haml b/app/views/projects/_home_panel.html.haml index e191b009db2..82b2ab64a5d 100644 --- a/app/views/projects/_home_panel.html.haml +++ b/app/views/projects/_home_panel.html.haml @@ -2,7 +2,7 @@ - show_auto_devops_callout = show_auto_devops_callout?(@project) .project-home-panel{ class: ("empty-project" if empty_repo) } .project-header.row.append-bottom-8 - .project-title-row.col-md-12.col-lg-7.d-flex + .project-title-row.col-md-12.col-lg-6.d-flex .avatar-container.project-avatar.float-none = project_icon(@project, alt: @project.name, class: 'avatar avatar-tile s64', width: 64, height: 64) .d-flex.flex-column.flex-wrap.align-items-baseline @@ -25,7 +25,7 @@ - if @project.has_extra_tags? = _("+ %{count} more") % { count: @project.count_of_extra_tags_not_shown } - .project-repo-buttons.col-md-12.col-lg-5.d-inline-flex.flex-wrap.justify-content-lg-end + .project-repo-buttons.col-md-12.col-lg-6.d-inline-flex.flex-wrap.justify-content-lg-end - if current_user .d-inline-flex = render 'projects/buttons/notifications', notification_setting: @notification_setting, btn_class: 'btn-xs' |