BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
ea6dfcad
Commit
ea6dfcad
authored
Jul 24, 2017
by
Clement Ho
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '35156-more-responsive-nav' into 'master'
fix resize bug for title and collapsible nav menus Closes #35156 See merge request !12904
parents
f39f54c6
9408ed7f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
8 deletions
+31
-8
main.js
app/assets/javascripts/main.js
+1
-7
header.scss
app/assets/stylesheets/framework/header.scss
+29
-0
_new.html.haml
app/views/layouts/header/_new.html.haml
+1
-1
No files found.
app/assets/javascripts/main.js
View file @
ea6dfcad
...
...
@@ -290,13 +290,7 @@ $(function () {
return
$container
.
remove
();
// Commit show suppressed diff
});
$
(
'.navbar-toggle'
).
on
(
'click'
,
function
()
{
$
(
'.header-content .title, .header-content .navbar-sub-nav'
).
toggle
();
$
(
'.header-content .header-logo'
).
toggle
();
$
(
'.header-content .navbar-collapse'
).
toggle
();
$
(
'.js-navbar-toggle-left, .js-navbar-toggle-right, .title-container'
).
toggle
();
return
$
(
'.navbar-toggle'
).
toggleClass
(
'active'
);
});
$
(
'.navbar-toggle'
).
on
(
'click'
,
()
=>
$
(
'.header-content'
).
toggleClass
(
'menu-expanded'
));
// Show/hide comments on diff
$body
.
on
(
'click'
,
'.js-toggle-diff-comments'
,
function
(
e
)
{
var
$this
=
$
(
this
);
...
...
app/assets/stylesheets/framework/header.scss
View file @
ea6dfcad
...
...
@@ -132,6 +132,22 @@ header {
}
}
&
.navbar-gitlab-new
{
.fa-times
{
display
:
none
;
}
.menu-expanded
{
.fa-ellipsis-v
{
display
:
none
;
}
.fa-times
{
display
:
block
;
}
}
}
.global-dropdown
{
position
:
absolute
;
left
:
-10px
;
...
...
@@ -171,6 +187,19 @@ header {
min-height
:
$header-height
;
padding-left
:
30px
;
&
.menu-expanded
{
@media
(
max-width
:
$screen-xs-max
)
{
.header-logo
,
.title-container
{
display
:
none
;
}
.navbar-collapse
{
display
:
block
;
}
}
}
.dropdown-menu
{
margin-top
:
-5px
;
}
...
...
app/views/layouts/header/_new.html.haml
View file @
ea6dfcad
...
...
@@ -81,6 +81,6 @@
%button
.navbar-toggle.hidden-sm.hidden-md.hidden-lg
{
type:
'button'
}
%span
.sr-only
Toggle navigation
=
icon
(
'ellipsis-v'
,
class:
'js-navbar-toggle-right'
)
=
icon
(
'times'
,
class:
'js-navbar-toggle-left'
,
style:
'display: none;'
)
=
icon
(
'times'
,
class:
'js-navbar-toggle-left'
)
=
render
'shared/outdated_browser'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment