diff options
author | Phil Hughes <me@iamphill.com> | 2018-06-11 11:56:59 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-06-11 11:56:59 +0000 |
commit | da791e646d915cca40f52df87289894e4544f7e8 (patch) | |
tree | b3cc0ce0541a587245116ef4e2cc582ca31c301f | |
parent | 4274aeefcbf04aa7b66b087c79232ff245d32157 (diff) | |
parent | 3b25eccaa81bde87799d579151251f3d7904e5d5 (diff) | |
download | gitlab-ce-da791e646d915cca40f52df87289894e4544f7e8.tar.gz |
Merge branch '47679-fix-failed-jobs-tab-ie11' into 'master'
Resolve "Table on Failed Jobs tab is overflowing in IE11 and sm screens"
Closes #47679
See merge request gitlab-org/gitlab-ce!19637
-rw-r--r-- | app/assets/stylesheets/framework/tables.scss | 5 | ||||
-rw-r--r-- | changelogs/unreleased/47679-fix-failed-jobs-tab-ie11.yml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/tables.scss b/app/assets/stylesheets/framework/tables.scss index 6e1758d7677..ba9de6941ac 100644 --- a/app/assets/stylesheets/framework/tables.scss +++ b/app/assets/stylesheets/framework/tables.scss @@ -58,8 +58,13 @@ table { display: none; } + table, + tbody, td { display: block; + } + + td { color: $gl-text-color-secondary; } diff --git a/changelogs/unreleased/47679-fix-failed-jobs-tab-ie11.yml b/changelogs/unreleased/47679-fix-failed-jobs-tab-ie11.yml new file mode 100644 index 00000000000..48f3bc87eee --- /dev/null +++ b/changelogs/unreleased/47679-fix-failed-jobs-tab-ie11.yml @@ -0,0 +1,5 @@ +--- +title: Fix overflowing Failed Jobs table in sm viewports on IE11 +merge_request: +author: +type: fixed |