From 7c60f7bd5cc01cd6e17fbd44c09ab047bd997321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=C3=A4mmerle?= Date: Mon, 24 Sep 2018 20:45:26 +0200 Subject: [PATCH 1/2] Update page width of File lock repo page --- ee/app/views/projects/path_locks/index.html.haml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ee/app/views/projects/path_locks/index.html.haml b/ee/app/views/projects/path_locks/index.html.haml index 843b99e95037b2..0ce5e1ea9cd85d 100644 --- a/ee/app/views/projects/path_locks/index.html.haml +++ b/ee/app/views/projects/path_locks/index.html.haml @@ -1,7 +1,8 @@ +- @content_class = "limit-container-width" unless fluid_layout - @no_container = true - page_title _("Locked Files") -%div{ class: (container_class) } +%div{ class: ([container_class, ("limit-container-width" unless fluid_layout)]) } .top-area .nav-text = _("Locks give the ability to lock specific file or folder.") -- GitLab From 3c4a767bb34a12fe681aa2edd67920e7fbaf6b60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=C3=A4mmerle?= Date: Mon, 24 Sep 2018 21:05:14 +0200 Subject: [PATCH 2/2] Add changelog entry --- .../unreleased/update-repo-file-lock-page-width.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ee/changelogs/unreleased/update-repo-file-lock-page-width.yml diff --git a/ee/changelogs/unreleased/update-repo-file-lock-page-width.yml b/ee/changelogs/unreleased/update-repo-file-lock-page-width.yml new file mode 100644 index 00000000000000..1b7128eeb6897e --- /dev/null +++ b/ee/changelogs/unreleased/update-repo-file-lock-page-width.yml @@ -0,0 +1,5 @@ +--- +title: 'Consolidate UI page widths - Part 01: Repository (EE version)' +merge_request: 7471 +author: +type: other -- GitLab