ca0b730605
Reviewed-on: https://akkoma.dev/AkkomaGang/pleroma-fe/pulls/83 Co-authored-by: eris <femmediscord@gmail.com> Co-committed-by: eris <femmediscord@gmail.com>
148 lines
2.9 KiB
SCSS
148 lines
2.9 KiB
SCSS
@import '../../_variables.scss';
|
|
|
|
.DesktopNav {
|
|
width: 100%;
|
|
|
|
input {
|
|
color: var(--inputTopbarText, var(--inputText));
|
|
}
|
|
|
|
a {
|
|
color: var(--topBarLink, $fallback--link);
|
|
}
|
|
|
|
.inner-nav {
|
|
display: grid;
|
|
grid-template-rows: var(--navbar-height);
|
|
grid-template-columns: 2fr auto 2fr;
|
|
grid-template-areas: "nav-left logo actions";
|
|
box-sizing: border-box;
|
|
padding: 0 1.2em;
|
|
margin: auto;
|
|
max-width: 1110px;
|
|
}
|
|
|
|
&.-logoLeft .inner-nav {
|
|
grid-template-columns: auto 2fr 2fr;
|
|
grid-template-areas: "logo nav-left actions";
|
|
}
|
|
|
|
.button-default {
|
|
&, svg {
|
|
color: $fallback--text;
|
|
color: var(--btnTopBarText, $fallback--text);
|
|
}
|
|
|
|
&:active {
|
|
background-color: $fallback--fg;
|
|
background-color: var(--btnPressedTopBar, $fallback--fg);
|
|
color: $fallback--text;
|
|
color: var(--btnPressedTopBarText, $fallback--text);
|
|
}
|
|
|
|
&:disabled {
|
|
color: $fallback--text;
|
|
color: var(--btnDisabledTopBarText, $fallback--text);
|
|
}
|
|
|
|
&.toggled {
|
|
color: $fallback--text;
|
|
color: var(--btnToggledTopBarText, $fallback--text);
|
|
background-color: $fallback--fg;
|
|
background-color: var(--btnToggledTopBar, $fallback--fg)
|
|
}
|
|
}
|
|
|
|
.logo {
|
|
grid-area: logo;
|
|
position: relative;
|
|
transition: opacity;
|
|
transition-timing-function: ease-out;
|
|
transition-duration: 100ms;
|
|
|
|
@media all and (min-width: 800px) {
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.mask {
|
|
mask-repeat: no-repeat;
|
|
mask-position: center;
|
|
mask-size: contain;
|
|
background-color: $fallback--fg;
|
|
background-color: var(--topBarText, $fallback--fg);
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
img {
|
|
display: inline-block;
|
|
height: var(--navbar-height);
|
|
}
|
|
}
|
|
|
|
.nav-icon {
|
|
margin-left: 0.2em;
|
|
width: 2em;
|
|
height: 100%;
|
|
text-align: center;
|
|
|
|
&.router-link-active {
|
|
font-size: 1.2em;
|
|
margin-top: 0.05em;
|
|
|
|
.svg-inline--fa {
|
|
font-weight: bolder;
|
|
color: $fallback--text;
|
|
color: var(--selectedMenuText, $fallback--text);
|
|
--lightText: var(--selectedMenuLightText, $fallback--lightText);
|
|
}
|
|
}
|
|
|
|
.svg-inline--fa {
|
|
color: $fallback--link;
|
|
color: var(--topBarLink, $fallback--link);
|
|
}
|
|
}
|
|
|
|
.-wide {
|
|
.nav-icon {
|
|
margin-left: 0.7em;
|
|
}
|
|
}
|
|
|
|
.left {
|
|
padding-left: 5px;
|
|
display: flex;
|
|
}
|
|
|
|
.nav-left-wrapper {
|
|
grid-area: nav-left;
|
|
|
|
.favicon {
|
|
height: 28px;
|
|
vertical-align: middle;
|
|
padding-right: 5px;
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
grid-area: actions;
|
|
}
|
|
|
|
.item {
|
|
flex: 1;
|
|
line-height: var(--navbar-height);
|
|
height: var(--navbar-height);
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
&.right {
|
|
justify-content: flex-end;
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|