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

99 lines
1.8 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;
2014-08-06 09:31:13 -04:00
transition: background .15s;
2013-02-05 14:16:51 -05:00
&:hover {
color: $quaternary;
2014-08-06 09:31:13 -04:00
background-color: dark-light-diff($quaternary, $secondary, 70%, -70%);
2013-02-05 14:16:51 -05:00
}
}
&.active > a, > a.active {
color: $secondary;
background-color: $quaternary;
2013-02-05 14:16:51 -05:00
}
}
}
// Stacked nav
// --------------------------------------------------
.nav-stacked {
position: relative;
2013-02-05 14:16:51 -05:00
@extend %nav;
padding: 0;
overflow: hidden;
background: dark-light-diff($primary, $secondary, 90%, -75%);
2013-02-05 14:16:51 -05:00
> li {
border-bottom: 1px solid dark-light-diff($primary, $secondary, 80%, -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,
{
color: $secondary;
background-color: $quaternary;
2013-02-05 14:16:51 -05:00
}
.active > a::after,
{
left: 90%;
top: 28%;
border: solid transparent;
content: " ";
position: absolute;
border-width: 10px;
border-left-color: $secondary;
}
2013-02-05 14:16:51 -05:00
.count {
font-size: 12px;
line-height: 16px;
}
.glyph {
font-size: 12px;
width: 30px;
text-align: center;
position: absolute;
left: 2px;
2013-12-09 16:27:49 -05:00
line-height: 20px;
}
}