From e8bdfa0ddfad5b4d061be6de822d951a0f0a991a Mon Sep 17 00:00:00 2001 From: Samantha Ming Date: Mon, 11 Jan 2021 17:06:16 -0800 Subject: [PATCH] Fix table columm shift with table-layout fixed Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/285112 --- app/assets/stylesheets/pages/tree.scss | 1 + .../unreleased/285112-reduce-table-column-layout-shift.yml | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 changelogs/unreleased/285112-reduce-table-column-layout-shift.yml diff --git a/app/assets/stylesheets/pages/tree.scss b/app/assets/stylesheets/pages/tree.scss index 8f3574a337b891..352050f7b01ac2 100644 --- a/app/assets/stylesheets/pages/tree.scss +++ b/app/assets/stylesheets/pages/tree.scss @@ -98,6 +98,7 @@ .tree-table { margin-bottom: 0; + table-layout: fixed; tr { border-bottom: 1px solid $white-normal; diff --git a/changelogs/unreleased/285112-reduce-table-column-layout-shift.yml b/changelogs/unreleased/285112-reduce-table-column-layout-shift.yml new file mode 100644 index 00000000000000..fe0ea1b2f8e81a --- /dev/null +++ b/changelogs/unreleased/285112-reduce-table-column-layout-shift.yml @@ -0,0 +1,5 @@ +--- +title: Fix table columm shift with table-layout fixed +merge_request: 51416 +author: +type: fixed -- GitLab