mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
94 lines
1.8 KiB
SCSS
94 lines
1.8 KiB
SCSS
// --------------------------------------------------
|
|
// Navigation menus
|
|
// --------------------------------------------------
|
|
|
|
// Base
|
|
// --------------------------------------------------
|
|
|
|
%nav {
|
|
margin-left: 0;
|
|
list-style: none;
|
|
> li > a {
|
|
display: block;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
// Pill nav
|
|
// --------------------------------------------------
|
|
|
|
.nav-pills {
|
|
@extend %nav;
|
|
@extend .clearfix;
|
|
> li {
|
|
float: left;
|
|
margin-right: 5px;
|
|
> a {
|
|
border: none;
|
|
padding: 5px 12px;
|
|
color: $primary;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
&:hover {
|
|
color: $quaternary;
|
|
background-color: scale-color($quaternary, $lightness: 70%);
|
|
}
|
|
}
|
|
&.active > a, > a.active {
|
|
color: $secondary;
|
|
background-color: $quaternary;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Stacked nav
|
|
// --------------------------------------------------
|
|
|
|
.nav-stacked {
|
|
position: relative;
|
|
@extend %nav;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: scale-color-diff();
|
|
@include box-shadow(0 1px 0 scale-color-diff());
|
|
> li {
|
|
border-bottom: 2px solid scale-color($primary, $lightness: 80%);
|
|
&:last-of-type {
|
|
border-bottom: 0;
|
|
}
|
|
> a {
|
|
margin: 0;
|
|
padding: 13px 13px 13px 30px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
cursor: pointer;
|
|
color: $primary;
|
|
}
|
|
}
|
|
.active > a,
|
|
.active .fa-chevron-right {
|
|
color: $secondary;
|
|
background-color: $quaternary;
|
|
}
|
|
.count {
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
}
|
|
.fa-chevron-right {
|
|
float: right;
|
|
margin: 0;
|
|
color: scale-color($primary, $lightness: 60%);
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.glyph {
|
|
font-size: 12px;
|
|
width: 30px;
|
|
text-align: center;
|
|
position: absolute;
|
|
left: 2px;
|
|
line-height: 20px;
|
|
}
|
|
}
|