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
433a65db
Commit
433a65db
authored
Jun 15, 2016
by
Annabel Dunstone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lighten each logo path color instead of white
parent
1af4ae33
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
16 deletions
+32
-16
header.scss
app/assets/stylesheets/framework/header.scss
+27
-5
sidebar.scss
app/assets/stylesheets/framework/sidebar.scss
+0
-11
variables.scss
app/assets/stylesheets/framework/variables.scss
+5
-0
No files found.
app/assets/stylesheets/framework/header.scss
View file @
433a65db
...
...
@@ -2,6 +2,17 @@
* Application Header
*
*/
@mixin
tanuki-logo-colors
(
$path-color
)
{
fill
:
$path-color
;
transition
:
all
0
.8s
;
&
:hover
,
&
.highlight
{
fill
:
lighten
(
$path-color
,
25%
);
transition
:
all
0
.1s
;
}
}
header
{
transition
:
padding
$sidebar-transition-duration
;
...
...
@@ -191,13 +202,24 @@ header {
}
}
.tanuki-shape
{
transition
:
all
0
.8s
;
#tanuki-logo
{
&
:hover
,
&
.highlight
{
fill
:
rgb
(
255
,
255
,
255
);
transition
:
all
0
.1s
;
#tanuki-left-ear
,
#tanuki-right-ear
,
#tanuki-nose
{
@include
tanuki-logo-colors
(
$tanuki-red
);
}
#tanuki-left-eye
,
#tanuki-right-eye
{
@include
tanuki-logo-colors
(
$tanuki-orange
);
}
#tanuki-left-cheek
,
#tanuki-right-cheek
{
@include
tanuki-logo-colors
(
$tanuki-yellow
);
}
}
@media
(
max-width
:
$screen-xs-max
)
{
...
...
app/assets/stylesheets/framework/sidebar.scss
View file @
433a65db
...
...
@@ -55,17 +55,6 @@
}
}
.tanuki-shape
{
transition
:
all
0
.8s
;
&
:hover
,
&
.highlight
{
fill
:
rgb
(
255
,
255
,
255
);
transition
:
all
0
.1s
;
}
}
.nav-sidebar
{
position
:
absolute
;
top
:
50px
;
...
...
app/assets/stylesheets/framework/variables.scss
View file @
433a65db
...
...
@@ -156,6 +156,11 @@ $warning-message-border: #f0e2bb;
/* header */
$light-grey-header
:
#faf9f9
;
/* tanuki logo colors */
$tanuki-red
:
#e24329
;
$tanuki-orange
:
#fc6d26
;
$tanuki-yellow
:
#fca326
;
/*
* State colors:
*/
...
...
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