diff options
author | Simon Knox <psimyn@gmail.com> | 2018-10-04 21:07:24 +1000 |
---|---|---|
committer | Simon Knox <psimyn@gmail.com> | 2018-10-04 21:07:24 +1000 |
commit | a18074691a83d75b078d797fb70dcaed7d2e6001 (patch) | |
tree | 5817e48e0a6e18a7372327872d56be785f24a2e0 /app/assets/stylesheets/performance_bar.scss | |
parent | 8a8ae2f57fe0db9b33f100e9a68c9eac4fd71c4d (diff) | |
download | gitlab-ce-a18074691a83d75b078d797fb70dcaed7d2e6001.tar.gz |
Make perfbar z-index above modal background50552-unable-to-close-performance-bar
Diffstat (limited to 'app/assets/stylesheets/performance_bar.scss')
-rw-r--r-- | app/assets/stylesheets/performance_bar.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/stylesheets/performance_bar.scss b/app/assets/stylesheets/performance_bar.scss index 2e2ab8532d2..59fdbf31fe9 100644 --- a/app/assets/stylesheets/performance_bar.scss +++ b/app/assets/stylesheets/performance_bar.scss @@ -1,4 +1,5 @@ @import 'framework/variables'; +@import 'framework/variables_overrides'; @import 'peek/views/rblineprof'; #js-peek { @@ -6,7 +7,7 @@ left: 0; top: 0; width: 100%; - z-index: 1039; + z-index: #{$zindex-modal-backdrop + 1}; height: $performance-bar-height; background: $black; |