diff options
author | Phil Hughes <me@iamphill.com> | 2018-10-24 13:22:46 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-10-24 13:22:46 +0000 |
commit | a1ee2072f1a7c197e13bd2d5f8ca59ad1deb1c49 (patch) | |
tree | bbf223eab4f07db1c6621256f2ec218285f52083 /app/views/layouts | |
parent | 83b4cab7e92f25339a9c991d9ca2340d4fb2a84c (diff) | |
parent | 90a494eed2f1da8227a7e2668524fd19fa76a7ad (diff) | |
download | gitlab-ce-a1ee2072f1a7c197e13bd2d5f8ca59ad1deb1c49.tar.gz |
Merge branch 'fix/limit-flash-notice-width' into 'master'
Limit flash notice width for fixed layout and improve spacing for fluid layout
Closes #32868
See merge request gitlab-org/gitlab-ce!16482
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/_flash.html.haml | 2 | ||||
-rw-r--r-- | app/views/layouts/_page.html.haml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/layouts/_flash.html.haml b/app/views/layouts/_flash.html.haml index 8bd5708d490..2cdaa85bdaa 100644 --- a/app/views/layouts/_flash.html.haml +++ b/app/views/layouts/_flash.html.haml @@ -6,5 +6,5 @@ -# Don't show a flash message if the message is nil - if value %div{ class: "flash-#{key}" } - %div{ class: "#{container_class} #{extra_flash_class}" } + %div{ class: "#{(container_class unless fluid_layout)} #{(extra_flash_class unless @no_container)} #{@content_class}" } %span= value diff --git a/app/views/layouts/_page.html.haml b/app/views/layouts/_page.html.haml index 1420b0a4973..1b2a4cd6780 100644 --- a/app/views/layouts/_page.html.haml +++ b/app/views/layouts/_page.html.haml @@ -6,12 +6,12 @@ .mobile-overlay .alert-wrapper = render "layouts/broadcast" - = render 'layouts/header/read_only_banner' + = render "layouts/header/read_only_banner" = yield :flash_message = render "shared/ping_consent" - unless @hide_breadcrumbs = render "layouts/nav/breadcrumbs" - = render "layouts/flash" + = render "layouts/flash", extra_flash_class: 'limit-container-width' .d-flex %div{ class: "#{(container_class unless @no_container)} #{@content_class}" } .content{ id: "content-body" } |