mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 21:41:49 +03:00
a0387c46a7
- Clicking the content closes the nav - Content overlays the nav to create a parallax effect - Clicking the burger works now
256 lines
5.3 KiB
SCSS
256 lines
5.3 KiB
SCSS
//
|
|
// Global Navigation
|
|
// --------------------------------------------------
|
|
|
|
// The main wrapper, sets position and bg colour.
|
|
.global-nav {
|
|
height: 60px;
|
|
@include position(fixed, 0px 0px auto 0px);
|
|
z-index: 9999;
|
|
background: $darkgrey;
|
|
|
|
i:before {
|
|
display: inline-block;
|
|
width: 16px;
|
|
}
|
|
|
|
.thing,
|
|
.thing2 {
|
|
display: none; // hide until mobile
|
|
}
|
|
}
|
|
|
|
// Wrapper for each item
|
|
.nav-item {
|
|
position: relative;
|
|
display: block;
|
|
float: left;
|
|
height: 60px;
|
|
padding-right: 10px;
|
|
font-size: 1.1rem;
|
|
letter-spacing: 1px;
|
|
font-weight: 200;
|
|
line-height: 1.1em;
|
|
}
|
|
|
|
// Pill shaped background
|
|
.nav-label {
|
|
height: 33px;
|
|
margin-top: 14px;
|
|
padding: 10px 12px;
|
|
color: rgba(255,255,255,0.7);
|
|
text-transform: uppercase;
|
|
border-radius: 4px;
|
|
@include transition(color 0.5s, background 0.5s);
|
|
}
|
|
.nav-item.active .nav-label,
|
|
.nav-item:hover .nav-label {
|
|
color: rgba(255,255,255,0.9);
|
|
background: darken($darkgrey, 7%);
|
|
@include transition(color 0.1s, background 0.1s);
|
|
}
|
|
|
|
// Ghost branding
|
|
.ghost-logo {
|
|
width: 60px;
|
|
padding-right: 0;
|
|
text-align: center;
|
|
color: lighten($grey, 20%);
|
|
font-size: 1.2rem;
|
|
line-height: 1em;
|
|
@include transition(color 0.5s);
|
|
|
|
span {
|
|
display: none;
|
|
}
|
|
}
|
|
.ghost-logo:hover,
|
|
.ghost-logo:focus {
|
|
color: $lightgrey;
|
|
@include transition(color 0.1s);
|
|
|
|
.nav-label {
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
// Right hand dropdown
|
|
.user-menu {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
|
|
.nav-label {
|
|
margin: 0;
|
|
padding: 0 12px;
|
|
background: none !important;
|
|
}
|
|
|
|
// Profile picture
|
|
.image {
|
|
float: left;
|
|
margin: 15px 8px 0 0;
|
|
|
|
img {
|
|
display: block;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 100%;
|
|
}
|
|
}
|
|
|
|
// Descriptive label for mobile menu
|
|
.name {
|
|
float: right;
|
|
height: 33px;
|
|
margin-top: 14px;
|
|
padding: 10px 12px;
|
|
border-radius: 4px;
|
|
@include transition(background 0.5s);
|
|
|
|
small {
|
|
display: none; // hide until mobile
|
|
font-size: 11px;
|
|
text-transform: none;
|
|
letter-spacing: 0;
|
|
color: rgba(255,255,255,0.4);
|
|
margin-top: 0;
|
|
line-height: 11px;
|
|
}
|
|
}
|
|
&:hover .name {
|
|
color: rgba(255,255,255,0.9);
|
|
background: darken($darkgrey, 7%);
|
|
@include transition(background 0.1s);
|
|
}
|
|
|
|
i:before {
|
|
width: auto;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
}//.user-menu
|
|
|
|
|
|
//
|
|
// Mobile
|
|
// --------------------------------------------------
|
|
|
|
@media (max-width: 1025px) {
|
|
|
|
// Fixed width, position left
|
|
.global-nav {
|
|
z-index: 20; // below the .viewport when collapsed
|
|
width: 260px;
|
|
height: auto;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: darken($darkgrey, 7%);
|
|
overflow: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
@include transform(translate3d(-60px, 0px, 0px)); // Not off the screen, to give a parallax effect
|
|
@include transition(transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1));
|
|
|
|
.thing, .thing2 {
|
|
display: block;
|
|
}
|
|
|
|
&.global-nav-expanded {
|
|
@include transform(translate3d(0, 0px, 0px));
|
|
}
|
|
}
|
|
|
|
.nav-item {
|
|
position: relative;
|
|
float: none;
|
|
height: auto;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-bottom: $darkgrey 1px solid;
|
|
}
|
|
|
|
// Convert to full-width mobile-friendly
|
|
.nav-label {
|
|
display: block;
|
|
height: 44px;
|
|
line-height: 44px;
|
|
margin: 0;
|
|
padding: 0 15px;
|
|
border-radius: 0;
|
|
}
|
|
.nav-item.active .nav-label {
|
|
color: #fff !important;
|
|
background: darken($darkgrey, 4%);
|
|
|
|
i { color: #fff; }
|
|
}
|
|
.nav-item:hover .nav-label {
|
|
color: rgba(255,255,255,0.9);
|
|
background: $darkgrey;
|
|
}
|
|
|
|
.ghost-logo {
|
|
display: block;
|
|
width: 100%;
|
|
font-size: 1.1rem;
|
|
line-height: 44px;
|
|
text-align: left;
|
|
|
|
span { display: inline; }
|
|
}
|
|
|
|
// Drop it to the bottom of the menu
|
|
.user-menu {
|
|
@include position(absolute, auto 0px 0px 0px);
|
|
height: auto;
|
|
padding: 15px;
|
|
border-bottom: none;
|
|
border-top: $darkgrey 1px solid;
|
|
@include transition(color 0.5s, background 0.5s);
|
|
|
|
.nav-label {
|
|
padding: 0;
|
|
height: auto;
|
|
}
|
|
|
|
.image {
|
|
margin: 2px 10px 0 0;
|
|
}
|
|
|
|
.name {
|
|
float: left;
|
|
margin: 0;
|
|
padding: 0 0 5px 0;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
line-height: 19px;
|
|
overflow: hidden;
|
|
|
|
small {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
i {
|
|
display: none;
|
|
}
|
|
|
|
&:hover {
|
|
color: rgba(255,255,255,0.9);
|
|
background: $darkgrey;
|
|
@include transition(color 0.1s, background 0.1s);
|
|
|
|
.name {
|
|
background: transparent;
|
|
@include transition(none);
|
|
}
|
|
}
|
|
|
|
}//.user-menu
|
|
|
|
} |