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

117 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;
2018-01-12 17:27:38 -05:00
padding: 6px 12px;
color: $primary;
2018-01-12 17:27:38 -05:00
font-size: $font-up-1;
line-height: $line-height-medium;
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;
}
2013-02-05 14:16:51 -05:00
}
2017-08-23 16:16:18 -04:00
a {
margin: 0;
padding: 13px;
2018-01-12 17:27:38 -05:00
font-size: $font-up-1;
line-height: $line-height-small;
cursor: pointer;
color: $primary;
&.active {
color: $secondary;
background-color: $quaternary;
&::after {
left: 90%;
top: 33%;
content: " ";
position: absolute;
border: 8px solid transparent;
border-left-color: $secondary;
}
2017-08-23 16:16:18 -04:00
}
}
2013-02-05 14:16:51 -05:00
.count {
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
line-height: $line-height-large;
2013-02-05 14:16:51 -05:00
}
.glyph {
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
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;
2018-01-12 17:27:38 -05:00
line-height: $line-height-large;
}
}