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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
2.3 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;
display: flex;
flex-direction: row;
align-items: stretch;
2013-02-05 14:16:51 -05:00
> li {
display: flex;
2021-01-06 16:15:28 -05:00
margin-right: 0.5em;
> a,
button {
2013-10-28 12:25:52 -04:00
border: none;
border-radius: var(--d-nav-pill-border-radius);
2018-01-12 17:27:38 -05:00
padding: 6px 12px;
color: var(--primary);
font-size: var(--font-up-1);
line-height: var(--line-height-small);
box-sizing: border-box;
min-height: 30px;
display: flex;
align-items: center;
transition: background-color 0.2s, color 0.2s;
.d-icon {
margin-right: 5px;
opacity: 0.65;
}
2013-02-05 14:16:51 -05:00
&:hover {
color: var(--quaternary);
background-color: var(--quaternary-low);
2013-02-05 14:16:51 -05:00
}
}
a.active,
button.active {
color: var(--secondary);
background-color: var(--quaternary);
.d-icon {
opacity: 1;
}
2013-02-05 14:16:51 -05:00
}
}
}
// Stacked nav
// --------------------------------------------------
.nav-stacked {
@extend %nav;
padding: 0;
background: var(--primary-low);
2017-08-23 16:16:18 -04:00
li {
border-bottom: 1px solid var(--primary-low-mid-or-secondary-high);
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: 0.75em;
font-size: var(--font-up-1);
line-height: var(--line-height-small);
cursor: pointer;
color: var(--primary);
@include ellipsis;
&.active {
color: var(--secondary);
background-color: var(--quaternary);
position: relative;
--arrow-thickness: 8px;
&::after {
position: absolute;
right: 0;
top: calc(50% - var(--arrow-thickness));
content: " ";
border: var(--arrow-thickness) solid transparent;
border-left-color: var(--secondary);
}
2017-08-23 16:16:18 -04:00
}
}
2013-02-05 14:16:51 -05:00
.count {
font-size: var(--font-down-1);
2013-02-05 14:16:51 -05:00
}
.glyph {
font-size: var(--font-down-1);
2017-08-23 16:16:18 -04:00
width: 1.25em;
text-align: center;
margin-right: 0.25em;
line-height: var(--line-height-large);
}
}