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

118 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 {
2013-02-05 14:16:51 -05:00
display: block;
text-decoration: none;
}
}
// Pill nav
// --------------------------------------------------
.nav-pills {
@extend %nav;
@extend .clearfix;
2013-02-05 14:16:51 -05:00
> li {
float: left;
margin-right: 5px;
2013-02-05 14:16:51 -05:00
> a {
2013-10-28 12:25:52 -04:00
border: none;
2013-02-05 14:16:51 -05:00
padding: 5px 12px;
color: $primary;
font-size: 1.143em;
2013-02-05 14:16:51 -05:00
line-height: 20px;
2014-08-06 09:31:13 -04:00
transition: background .15s;
.d-icon {
margin-right: 5px;
opacity: .65;
}
2013-02-05 14:16:51 -05:00
&:hover {
color: $quaternary;
2017-06-11 22:20:14 -04:00
background-color: $quaternary-low;
2013-02-05 14:16:51 -05:00
}
}
&.active > a,
> a.active {
color: $secondary;
background-color: $quaternary;
.d-icon {
opacity: 1;
}
2013-02-05 14:16:51 -05:00
}
}
}
// Stacked nav
// --------------------------------------------------
.nav-stacked {
@extend %nav;
padding: 0;
overflow: hidden;
2017-06-11 22:20:14 -04:00
background: $primary-low;
2017-08-23 16:16:18 -04:00
li {
2017-06-11 22:20:14 -04:00
border-bottom: 1px solid $primary-low;
2014-11-14 03:46:04 -05:00
position: relative;
2017-08-23 16:16:18 -04:00
2013-02-05 14:16:51 -05:00
&:last-of-type {
border-bottom: 0;
}
2017-08-23 16:16:18 -04:00
&.indent {
padding-left: 15px;
}
a {
2013-02-05 14:16:51 -05:00
margin: 0;
2017-08-23 16:16:18 -04:00
padding: 13px;
font-size: 1.143em;
2013-02-05 14:16:51 -05:00
line-height: 20px;
cursor: pointer;
color: $primary;
2013-02-05 14:16:51 -05:00
}
}
2017-08-23 16:16:18 -04:00
.active > a,
li > a.active {
color: $secondary;
background-color: $quaternary;
2017-08-23 16:16:18 -04:00
&:after {
left: 90%;
top: 33%;
content: " ";
position: absolute;
border: 8px solid transparent;
border-left-color: $secondary;
}
}
2013-02-05 14:16:51 -05:00
.count {
font-size: 0.857em;
2013-02-05 14:16:51 -05:00
line-height: 16px;
}
.glyph {
font-size: 0.857em;
2017-08-23 16:16:18 -04:00
width: 1.25em;
text-align: center;
2017-08-23 16:16:18 -04:00
margin-right: .5em;
2013-12-09 16:27:49 -05:00
line-height: 20px;
}
}