diff --git a/client/res/templates/site/navbar.tpl b/client/res/templates/site/navbar.tpl
index 9f98d81fbf..c4c75c2975 100644
--- a/client/res/templates/site/navbar.tpl
+++ b/client/res/templates/site/navbar.tpl
@@ -160,26 +160,46 @@
{{{globalSearch}}}
-
- {{{notificationsBadge}}}
-
{{#if enableQuickCreate}}
-
+
{{/if}}
+
+ {{{notificationsBadge}}}
+
-
+
diff --git a/client/src/views/site/navbar.js b/client/src/views/site/navbar.js
index d46c1bb2dd..9df524fc69 100644
--- a/client/src/views/site/navbar.js
+++ b/client/src/views/site/navbar.js
@@ -663,6 +663,8 @@ define('views/site/navbar', ['view'], function (Dep) {
var windowHeight = window.innerHeight;
var windowWidth = window.innerWidth;
+ this.$minimizer.removeClass('hidden');
+
if (windowWidth < smallScreenWidth) {
$tabs.css('height', 'auto');
$more.css('max-height', '');
@@ -680,10 +682,6 @@ define('views/site/navbar', ['view'], function (Dep) {
updateSizeForVertical();
- this.$el
- .find('.notifications-badge-container')
- .insertAfter(this.$el.find('.quick-create-container'));
-
this.adjustBodyMinHeight();
},
@@ -794,6 +792,7 @@ define('views/site/navbar', ['view'], function (Dep) {
this.$body = $('body');
this.$tabs = this.$el.find('ul.tabs');
this.$more = this.$tabs.find('li.more > ul');
+ this.$minimizer = this.$el.find('a.minimizer');
this.$body.addClass('has-navbar');