From 80a1c6de952caa6a7b86146358f06c3bb0ca106c Mon Sep 17 00:00:00 2001 From: Vitaly Slobodin Date: Thu, 2 Sep 2021 12:21:13 +0300 Subject: [PATCH] Remove table-layout: fixed style from the tree table of files This causes invalid columns widths on mobile devices because `table-layout: fixed` calculates widths just once using the first available row which is the row with the button 'Go up'. Changelog: fixed MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69445 --- app/assets/stylesheets/pages/tree.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/app/assets/stylesheets/pages/tree.scss b/app/assets/stylesheets/pages/tree.scss index c6198315606d74..5765156f26c756 100644 --- a/app/assets/stylesheets/pages/tree.scss +++ b/app/assets/stylesheets/pages/tree.scss @@ -102,7 +102,6 @@ .tree-table { margin-bottom: 0; - table-layout: fixed; tr { border-bottom: 1px solid $white-normal; -- GitLab