Ghost/core/client/assets/sass/components/navigation.scss

238 lines
4.8 KiB
SCSS
Raw Normal View History

//
// Global Navigation
// --------------------------------------------------
// The main wrapper, sets position and bg colour.
2014-07-29 01:21:02 +04:00
.global-nav {
height: 60px;
@include position(fixed, 0px 0px auto 0px);
z-index: 9999;
background: $darkgrey;
2014-07-29 16:47:03 +04:00
i:before {
display: inline-block;
width: 16px;
}
.thing,
.thing2 {
display: none; // hide until mobile
}
}
2014-07-29 01:21:02 +04:00
// Wrapper for each item
.nav-item {
position: relative;
display: block;
float: left;
2014-07-29 02:34:34 +04:00
height: 60px;
padding-right: 10px;
font-size: 1.1rem;
letter-spacing: 1px;
font-weight: 200;
line-height: 1.1em;
}
2014-07-29 01:21:02 +04:00
// Pill shaped background
.nav-label {
2014-07-29 02:34:34 +04:00
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);
}
2014-07-29 02:34:34 +04:00
.nav-item.active .nav-label,
.nav-item:hover .nav-label {
2014-07-29 02:34:34 +04:00
color: rgba(255,255,255,0.9);
background: darken($darkgrey, 7%);
@include transition(color 0.1s, background 0.1s);
}
2014-07-29 01:21:02 +04:00
// Ghost branding
.ghost-logo {
width: 60px;
2014-07-29 16:47:03 +04:00
padding-right: 0;
text-align: center;
color: lighten($grey, 20%);
2014-07-29 16:47:03 +04:00
font-size: 1.2rem;
2014-07-29 02:34:34 +04:00
line-height: 1em;
2014-07-29 01:21:02 +04:00
@include transition(color 0.5s);
2014-07-29 16:47:03 +04:00
span {
display: none;
}
}
.ghost-logo:hover,
.ghost-logo:focus {
color: $lightgrey;
2014-07-29 01:21:02 +04:00
@include transition(color 0.1s);
2014-07-29 16:47:03 +04:00
.nav-label {
background: transparent;
}
}
2014-07-29 01:21:02 +04:00
// Right hand dropdown
.user-menu {
position: absolute;
top: 0;
right: 0;
padding: 0;
margin: 0;
2014-07-29 02:34:34 +04:00
cursor: pointer;
.nav-label {
margin: 0;
padding: 0 12px;
background: none !important;
}
2014-07-29 01:21:02 +04:00
// Profile picture
.image {
2014-07-29 01:21:02 +04:00
float: left;
margin: 15px 8px 0 0;
img {
display: block;
width: 30px;
height: 30px;
border-radius: 100%;
}
}
2014-07-29 01:21:02 +04:00
// Descriptive label for mobile menu
.name {
2014-07-29 02:34:34 +04:00
float: right;
height: 33px;
margin-top: 14px;
padding: 10px 12px;
border-radius: 4px;
@include transition(background 0.5s);
2014-07-29 01:21:02 +04:00
small {
2014-07-29 02:34:34 +04:00
display: none; // hide until mobile
2014-07-29 03:34:47 +04:00
font-size: 11px;
text-transform: none;
letter-spacing: 0;
2014-07-29 18:35:03 +04:00
color: rgba(255,255,255,0.4);
2014-07-29 01:21:02 +04:00
margin-top: 0;
2014-07-29 18:35:03 +04:00
line-height: 11px;
2014-07-29 01:21:02 +04:00
}
}
2014-07-29 02:34:34 +04:00
&:hover .name {
color: rgba(255,255,255,0.9);
background: darken($darkgrey, 7%);
@include transition(background 0.1s);
}
}//.user-menu
2014-07-29 03:34:47 +04:00
//
// Mobile
// --------------------------------------------------
2014-07-29 02:34:34 +04:00
2014-07-29 03:34:47 +04:00
@media (max-width: 1025px) {
2014-07-29 02:34:34 +04:00
2014-07-29 03:34:47 +04:00
// Fixed width, position left
.global-nav {
2014-07-29 18:35:03 +04:00
z-index: 20; // below the .viewport when collapsed
2014-07-29 03:34:47 +04:00
width: 260px;
height: auto;
top: 0;
bottom: 0;
left: 0;
2014-07-29 16:47:03 +04:00
background: darken($darkgrey, 7%);
2014-07-29 03:34:47 +04:00
overflow: auto;
.thing, .thing2 {
display: block;
}
2014-07-29 03:34:47 +04:00
}
.nav-item {
position: relative;
float: none;
height: auto;
margin: 0;
padding: 0;
2014-07-29 16:47:03 +04:00
border-bottom: $darkgrey 1px solid;
2014-07-29 03:34:47 +04:00
}
// Convert to full-width mobile-friendly
.nav-label {
2014-07-29 02:34:34 +04:00
display: block;
2014-07-29 03:34:47 +04:00
height: 44px;
line-height: 44px;
margin: 0;
padding: 0 15px;
border-radius: 0;
}
2014-07-29 16:47:03 +04:00
.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;
2014-07-29 16:47:03 +04:00
line-height: 44px;
text-align: left;
span { display: inline; }
}
2014-07-29 03:34:47 +04:00
// Drop it to the bottom of the menu
.user-menu {
2014-07-29 16:47:03 +04:00
@include position(absolute, auto 0px 0px 0px);
2014-07-29 03:34:47 +04:00
height: auto;
padding: 15px;
2014-07-29 16:47:03 +04:00
border-bottom: none;
border-top: $darkgrey 1px solid;
@include transition(color 0.5s, background 0.5s);
2014-07-29 03:34:47 +04:00
.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;
}
}
&:hover {
color: rgba(255,255,255,0.9);
2014-07-29 16:47:03 +04:00
background: $darkgrey;
@include transition(color 0.1s, background 0.1s);
2014-07-29 03:34:47 +04:00
}
&:hover .name {
background: transparent;
@include transition(none);
}
2014-07-29 02:34:34 +04:00
}
2014-07-29 03:34:47 +04:00
}