Merge pull request #244 from lbryio/revert-227-205-apis-in-navigation

Revert "Closes #205"
This commit is contained in:
Jeremy Kauffman 2019-01-29 11:16:43 -05:00 committed by GitHub
commit 1f3d4e3fbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 152 deletions

View file

@ -30,19 +30,7 @@ export default currentUrl => {
{
name: "Resources",
title: "View LBRY resources",
url: "/resources",
children: [
{
name: "Blockchain API",
title: "Reference for the LBRY blockchain API",
url: "/api/blockchain"
},
{
name: "SDK API",
title: "Reference for the SDK API",
url: "/api/sdk"
}
]
url: "/resources"
},
{
name: "Community",
@ -53,12 +41,10 @@ export default currentUrl => {
return html`
<nav class="navigation">
<ul class="inner-wrap">
<li class="navigation__item logo">
<a href="/" title="LBRY homepage">Home</a>
</li>
<div class="inner-wrap">
<a class="navigation__item logo" href="/" title="LBRY homepage">Home</a>
${links.map(link => renderLink(currentUrl, link))}
</ul>
</div>
</nav>
`;
};
@ -80,45 +66,11 @@ function renderLink(href, link) {
break;
}
if (link.children) {
const links = [];
links.push(html`
<li class="navigation__item parent${activeClass ? " active" : ""}">
<a
href="${link.url}"
title="${link.title}"
>${link.name}</a>
<ul>
`);
for (const child of link.children) {
links.push(html`
<li>
<a
href="${child.url}"
title="${child.title}"
>${child.name}</a>
</li>
`);
}
links.push(html`
</ul>
</li>
`);
return links.join("");
}
else {
return html`
<li class="navigation__item${activeClass ? " active" : ""}">
<a
class="navigation__item${activeClass ? " active" : ""}"
href="${link.url}"
title="${link.title}"
>${link.name}</a>
</li>
`;
}
}

View file

@ -9,8 +9,7 @@
position: fixed;
z-index: 10;
> ul:first-of-type {
overflow: hidden;
> div:first-of-type {
position: relative;
@media (min-width: 701px) {
@ -40,7 +39,7 @@
}
.navigation__item {
// overflow: hidden;
overflow: hidden;
position: relative;
@media (max-width: 700px) {
@ -54,19 +53,6 @@
}
}
&:not(:hover) {
a::after {
bottom: -3px;
}
}
&:hover,
&.active {
a::after {
bottom: 0;
}
}
&:first-of-type {
@include hide-text;
width: 10rem; height: 3rem;
@ -79,15 +65,7 @@
flex: 1;
}
&:not(.logo) {
margin-right: 0.5rem;
a {
color: inherit;
font-size: 1rem;
line-height: 4rem;
&:not([href="http://localhost:8000"]):not([href="https://lbry.io"]) {
&:not(:first-of-type):not([href="http://localhost:8000"]):not([href="https://lbry.io"]) {
&::after {
width: 100%; height: 3px;
left: 0;
@ -97,51 +75,26 @@
position: absolute;
transition: bottom 0.2s;
}
}
}
}
&.parent {
display: inline-flex;
&:not(:hover) {
ul {
width: 0; height: 0;
opacity: 0;
visibility: hidden;
&::after {
bottom: -3px;
}
}
&:hover {
ul {
width: 100%;
padding-left: 1rem;
&:hover,
&.active {
&::after {
bottom: 0;
}
}
}
ul {
background-color: $lbry-white;
display: inline-flex;
position: relative;
transition: opacity 0.2s;
&::before {
height: 100%;
top: 0; left: 0;
content: "";
&:not(:first-of-type) {
color: inherit;
font-size: 1rem;
line-height: 4rem;
opacity: 0.3;
position: absolute;
}
}
}
a {
height: 100%;
display: block;
&:not([href="http://localhost:8000"]):not([href="https://lbry.io"]) {
padding-right: 0.5rem;
@ -151,6 +104,7 @@
&[href="http://localhost:8000"],
&[href="https://lbry.io"] {
color: $lbry-white;
margin-right: 0.5rem;
padding-right: 1rem;
padding-left: 1rem;
@ -173,5 +127,4 @@
z-index: -1;
}
}
}
}