discourse/app/assets/stylesheets/common/components/navs.css.scss

95 lines
1.9 KiB
SCSS
Raw Normal View History

2013-02-05 14:16:51 -05:00
// --------------------------------------------------
// 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 {
2013-10-28 12:25:52 -04:00
border: none;
2013-02-05 14:16:51 -05:00
padding: 5px 12px;
color: $primary;
2013-02-05 14:16:51 -05:00
font-size: 16px;
line-height: 20px;
&:hover {
color: $danger;
background-color: scale-color($danger, $lightness: 70%);
2013-02-05 14:16:51 -05:00
}
}
&.active > a, > a.active {
color: $secondary;
background-color: $danger;
2013-02-05 14:16:51 -05:00
}
}
}
// Stacked nav
// --------------------------------------------------
.nav-stacked {
position: relative;
2013-02-05 14:16:51 -05:00
@extend %nav;
border: 1px solid scale-color($primary, $lightness: 60%);
2013-02-05 14:16:51 -05:00
padding: 0;
overflow: hidden;
background-color: scale-color($primary, $lightness: 90%);
@include box-shadow(0 1px 0 scale-color($primary, $lightness: 90%));
2013-02-05 14:16:51 -05:00
> li {
border-bottom: 1px solid scale-color($primary, $lightness: 60%);
2013-02-05 14:16:51 -05:00
&:last-of-type {
border-bottom: 0;
}
> a {
margin: 0;
padding: 13px 13px 13px 30px;
2013-02-05 14:16:51 -05:00
font-size: 16px;
line-height: 20px;
cursor: pointer;
color: $primary;
2013-02-05 14:16:51 -05:00
}
}
.active > a,
2013-12-09 16:27:49 -05:00
.active .fa-chevron-right {
color: $secondary;
background-color: $danger;
2013-02-05 14:16:51 -05:00
}
.count {
font-size: 12px;
line-height: 16px;
}
2013-12-09 16:27:49 -05:00
.fa-chevron-right {
2013-02-05 14:16:51 -05:00
float: right;
margin: 0;
color: scale-color($primary, $lightness: 60%);
2013-02-05 14:16:51 -05:00
font-size: 14px;
line-height: 20px;
}
.glyph {
font-size: 12px;
width: 30px;
text-align: center;
position: absolute;
left: 2px;
2013-12-09 16:27:49 -05:00
line-height: 20px;
}
}