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
2cf17c42
Commit
2cf17c42
authored
Feb 20, 2017
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '27934-left-align-nav' into 'master'
Resolve "Left align nav items" Closes #27934 See merge request !9338
parents
608711c2
0d72c8b2
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
47 deletions
+26
-47
header.scss
app/assets/stylesheets/framework/header.scss
+4
-22
nav.scss
app/assets/stylesheets/framework/nav.scss
+4
-6
projects.scss
app/assets/stylesheets/pages/projects.scss
+8
-14
_page.html.haml
app/views/layouts/_page.html.haml
+1
-1
_default.html.haml
app/views/layouts/header/_default.html.haml
+2
-2
show.html.haml
app/views/projects/show.html.haml
+3
-2
27934-left-align-nav.yml
changelogs/unreleased/27934-left-align-nav.yml
+4
-0
No files found.
app/assets/stylesheets/framework/header.scss
View file @
2cf17c42
...
...
@@ -148,16 +148,11 @@ header {
}
.header-logo
{
position
:
absolute
;
left
:
50%
;
display
:
inline-block
;
margin
:
0
8px
0
3px
;
position
:
relative
;
top
:
7px
;
transition-duration
:
.3s
;
z-index
:
999
;
#logo
{
position
:
relative
;
left
:
-50%
;
}
svg
,
img
{
...
...
@@ -167,15 +162,6 @@ header {
&
:hover
{
cursor
:
pointer
;
}
@media
(
max-width
:
$screen-xs-max
)
{
right
:
20px
;
left
:
auto
;
#logo
{
left
:
auto
;
}
}
}
.title
{
...
...
@@ -183,7 +169,7 @@ header {
padding-right
:
20px
;
margin
:
0
;
font-size
:
18px
;
max-width
:
385
px
;
max-width
:
450
px
;
display
:
inline-block
;
line-height
:
$header-height
;
font-weight
:
normal
;
...
...
@@ -193,10 +179,6 @@ header {
vertical-align
:
top
;
white-space
:
nowrap
;
@media
(
min-width
:
$screen-sm-min
)
and
(
max-width
:
$screen-sm-max
)
{
max-width
:
300px
;
}
@media
(
max-width
:
$screen-xs-max
)
{
max-width
:
190px
;
}
...
...
app/assets/stylesheets/framework/nav.scss
View file @
2cf17c42
@mixin
fade
(
$gradient-direction
,
$gradient-color
)
{
visibility
:
hidden
;
opacity
:
0
;
z-index
:
2
;
z-index
:
1
;
position
:
absolute
;
bottom
:
12px
;
width
:
43px
;
...
...
@@ -18,7 +18,7 @@
.fa
{
position
:
relative
;
top
:
5
px
;
top
:
6
px
;
font-size
:
18px
;
}
}
...
...
@@ -79,7 +79,6 @@
}
&
.sub-nav
{
text-align
:
center
;
background-color
:
$gray-normal
;
.container-fluid
{
...
...
@@ -287,7 +286,6 @@
background
:
$gray-light
;
border-bottom
:
1px
solid
$border-color
;
transition
:
padding
$sidebar-transition-duration
;
text-align
:
center
;
.container-fluid
{
position
:
relative
;
...
...
@@ -353,7 +351,7 @@
right
:
-5px
;
.fa
{
right
:
-
7
px
;
right
:
-
28
px
;
}
}
...
...
@@ -383,7 +381,7 @@
left
:
0
;
.fa
{
left
:
10
px
;
left
:
-4
px
;
}
}
}
...
...
app/assets/stylesheets/pages/projects.scss
View file @
2cf17c42
...
...
@@ -645,30 +645,24 @@ pre.light-well {
}
}
.
project-last-commit
{
@media
(
m
in-width
:
$screen-sm-min
)
{
margin-top
:
$gl-padding
;
.
container-fluid.project-stats-container
{
@media
(
m
ax-width
:
$screen-xs-max
)
{
padding
:
12px
0
;
}
}
&
.container-fluid
{
padding-top
:
12px
;
padding-bottom
:
12px
;
.project-last-commit
{
background-color
:
$gray-light
;
padding
:
12px
$gl-padding
;
border
:
1px
solid
$border-color
;
border-right-width
:
0
;
border-left-width
:
0
;
@media
(
min-width
:
$screen-sm-min
)
{
border-right-width
:
1px
;
border-left-width
:
1px
;
}
margin-top
:
$gl-padding
;
}
&
.container-limited
{
@media
(
min-width
:
1281px
)
{
@media
(
min-width
:
$screen-sm-min
)
{
border-radius
:
$border-radius-base
;
}
}
.ci-status
{
margin-right
:
$gl-padding
;
...
...
app/views/layouts/_page.html.haml
View file @
2cf17c42
.page-with-sidebar
{
class:
page_gutter_class
}
-
if
defined?
(
nav
)
&&
nav
.layout-nav
.container-fluid
%div
{
class:
container_class
}
=
render
"layouts/nav/
#{
nav
}
"
.content-wrapper
{
class:
"#{layout_nav_class}"
}
=
yield
:sub_nav
...
...
app/views/layouts/header/_default.html.haml
View file @
2cf17c42
...
...
@@ -61,12 +61,12 @@
%div
=
link_to
"Sign in"
,
new_session_path
(
:user
,
redirect_to_referer:
'yes'
),
class:
'btn btn-sign-in btn-success'
%h1
.title
=
title
.header-logo
=
link_to
root_path
,
class:
'home'
,
title:
'Dashboard'
,
id:
'logo'
do
=
brand_header_logo
%h1
.title
=
title
=
yield
:header_content
=
render
'shared/outdated_browser'
...
...
app/views/projects/show.html.haml
View file @
2cf17c42
...
...
@@ -13,7 +13,8 @@
=
render
"home_panel"
-
if
current_user
&&
can?
(
current_user
,
:download_code
,
@project
)
%nav
.project-stats
{
class:
container_class
}
.project-stats-container
{
class:
container_class
}
%nav
.project-stats
%ul
.nav
%li
=
link_to
project_files_path
(
@project
)
do
...
...
@@ -74,7 +75,7 @@
Set up auto deploy
-
if
@repository
.
commit
.project-last-commit
{
class:
container_class
}
.project-last-commit
=
render
'projects/last_commit'
,
commit:
@repository
.
commit
,
ref:
current_ref
,
project:
@project
%div
{
class:
container_class
}
...
...
changelogs/unreleased/27934-left-align-nav.yml
0 → 100644
View file @
2cf17c42
---
title
:
Left align navigation
merge_request
:
author
:
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