From 7d6cec66eab88319123a4b35df2c913729347596 Mon Sep 17 00:00:00 2001 From: Annabel Dunstone Gray Date: Wed, 26 Oct 2016 11:57:48 -0500 Subject: [PATCH 1/2] Increase z index on fixed mr tabs --- app/assets/stylesheets/pages/merge_requests.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/pages/merge_requests.scss b/app/assets/stylesheets/pages/merge_requests.scss index 70afa568554..33f09722274 100644 --- a/app/assets/stylesheets/pages/merge_requests.scss +++ b/app/assets/stylesheets/pages/merge_requests.scss @@ -439,12 +439,12 @@ } .merge-request-tabs-holder { - background-color: #fff; + background-color: $white-light; &.affix { top: 100px; left: 0; - z-index: 9; + z-index: 10; transition: right .15s; } -- GitLab From 30bd346e5f4379c0a55a6ad696f705470b6a7740 Mon Sep 17 00:00:00 2001 From: Annabel Dunstone Gray Date: Wed, 26 Oct 2016 15:03:15 -0500 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1049551239c..d76f3754cbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,9 @@ Please view this file on the master branch, on stable branches it's out of date. - Fix documents and comments on Build API `scope` - Refactor email, use setter method instead AR callbacks for email attribute (Semyon Pupkov) +## 8.13.2 + - Fix builds dropdown overlapping bug !7124 + ## 8.13.1 (2016-10-25) - Fix branch protection API. !6215 - Fix hidden pipeline graph on commit and MR page. !6895 -- GitLab