Improve the JS for the p b
shortcut and fix its CSS
Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
parent
54c04f53fd
commit
af0c691706
2 changed files with 4 additions and 8 deletions
|
@ -58,10 +58,11 @@ import findAndFollowLink from './shortcuts_dashboard_navigation';
|
|||
|
||||
Shortcuts.prototype.onTogglePerfBar = function(e) {
|
||||
e.preventDefault();
|
||||
if (Cookies.get('perf_bar_enabled') === 'true') {
|
||||
Cookies.remove('perf_bar_enabled', { path: '/' });
|
||||
const performanceBarCookieName = 'perf_bar_enabled';
|
||||
if (Cookies.get(performanceBarCookieName) === 'true') {
|
||||
Cookies.remove(performanceBarCookieName, { path: '/' });
|
||||
} else {
|
||||
Cookies.set('perf_bar_enabled', true, { path: '/' });
|
||||
Cookies.set(performanceBarCookieName, true, { path: '/' });
|
||||
}
|
||||
gl.utils.refreshCurrentPage();
|
||||
};
|
||||
|
|
5
vendor/assets/stylesheets/peek.scss
vendored
5
vendor/assets/stylesheets/peek.scss
vendored
|
@ -6,12 +6,7 @@ header.navbar-gitlab.with-peek {
|
|||
}
|
||||
|
||||
#peek {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 35px;
|
||||
z-index: 400;
|
||||
background: #000;
|
||||
line-height: 35px;
|
||||
color: #999;
|
||||
|
|
Loading…
Reference in a new issue