Ability to toggle sidebar on smaller screens
This commit is contained in:
parent
c684bcc8b7
commit
a3713050f7
3 changed files with 12 additions and 20 deletions
|
@ -188,13 +188,9 @@ $ ->
|
|||
$container.remove()
|
||||
|
||||
$('.navbar-toggle').on 'click', ->
|
||||
$this = $(this);
|
||||
$('.header-content .title').toggle()
|
||||
$('.header-content .navbar-collapse').toggle()
|
||||
if $this.toggleClass('active').hasClass('active')
|
||||
$this.closest('header').css('z-index',100)
|
||||
else
|
||||
$this.closest('header').css('z-index',99)
|
||||
$('.navbar-toggle').toggleClass('active')
|
||||
|
||||
# Show/hide comments on diff
|
||||
$("body").on "click", ".js-toggle-diff-comments", (e) ->
|
||||
|
|
|
@ -23,7 +23,7 @@ header {
|
|||
|
||||
&.navbar-gitlab {
|
||||
padding: 0 20px;
|
||||
z-index: 99;
|
||||
z-index: 100;
|
||||
margin-bottom: 0;
|
||||
min-height: $header-height;
|
||||
background-color: #fff;
|
||||
|
@ -141,8 +141,12 @@ header {
|
|||
}
|
||||
|
||||
@media (max-width: $screen-md-max) {
|
||||
.header-collapsed, .header-expanded {
|
||||
@include collapsed-header;
|
||||
.header-collapsed {
|
||||
margin-left: $sidebar_collapsed_width;
|
||||
}
|
||||
|
||||
.header-expanded {
|
||||
margin-left: $sidebar_width;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -183,20 +183,12 @@
|
|||
}
|
||||
|
||||
@mixin expanded-sidebar {
|
||||
padding-left: $sidebar_width;
|
||||
|
||||
&.right-sidebar-collapsed {
|
||||
padding-right: $sidebar_collapsed_width;
|
||||
}
|
||||
|
||||
// when the screen is small enough
|
||||
@media (max-width: $screen-md-max) {
|
||||
padding-left: $sidebar_collapsed_width;
|
||||
}
|
||||
|
||||
// when the screen is big enough
|
||||
@media(min-width: $screen-md-max) {
|
||||
padding-left: $sidebar_width;
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
width: $sidebar_width;
|
||||
|
||||
|
|
Loading…
Reference in a new issue