Slight fixes for /api
This commit is contained in:
parent
4f102cf692
commit
1b28520b25
2 changed files with 29 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="slate">
|
||||
<div class="__slate">
|
||||
<aside class="api__toc">
|
||||
<div class="api__toc__search">
|
||||
<input type="search" class="api__toc__search__field" id="input-search" placeholder="Search"/>
|
||||
|
@ -77,7 +77,7 @@
|
|||
},
|
||||
|
||||
bindSearchIndex: function () {
|
||||
this.content = $(".slate .content");
|
||||
this.content = $(".api__content");
|
||||
this.searchResults = $(".api__toc__search__results");
|
||||
|
||||
$("#input-search").on("keyup", this.search);
|
||||
|
@ -118,7 +118,7 @@
|
|||
|
||||
component.highlight(this);
|
||||
} else {
|
||||
component.searchResults.html(`<li>No results found for <code>${searchElement.val()}</code></li>`);
|
||||
component.searchResults.html(`<li style="padding: 0.25rem 0.5rem 0.25rem 0.75rem;">No results found for <code>${searchElement.val()}</code></li>`);
|
||||
}
|
||||
} else {
|
||||
component.unhighlight();
|
||||
|
@ -166,7 +166,7 @@
|
|||
@import "../scss/init/colors";
|
||||
@import "../scss/init/mixins";
|
||||
|
||||
.slate {
|
||||
.__slate {
|
||||
width: 100%; height: 100%;
|
||||
position: relative;
|
||||
|
||||
|
@ -175,6 +175,8 @@
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.api__toc {
|
||||
width: 200px; height: calc(100vh - 4rem); // navigation is 4rem tall
|
||||
top: 4rem; left: 0; bottom: 0;
|
||||
|
@ -186,10 +188,6 @@
|
|||
overflow-y: auto;
|
||||
position: fixed;
|
||||
z-index: 3;
|
||||
|
||||
li {
|
||||
padding: 0.25rem 0.5rem 0.25rem 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.api__toc__search {
|
||||
|
@ -250,6 +248,15 @@
|
|||
padding-top: 0.25rem;
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
padding: 0.25rem 0.5rem 0.25rem 0.75rem;
|
||||
|
||||
&:hover {
|
||||
background-color: rgba($gray, 0.3);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.api__toc__items {
|
||||
|
@ -258,6 +265,14 @@
|
|||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
|
||||
&:hover {
|
||||
background-color: rgba($gray, 0.3);
|
||||
}
|
||||
|
||||
li {
|
||||
padding: 0.25rem 0.5rem 0.25rem 0.75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -288,12 +303,16 @@
|
|||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
p {
|
||||
p, ol, ul {
|
||||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol, ul {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
table {
|
||||
border: 1px solid rgba($white, 0.1);
|
||||
border-radius: 0.3rem;
|
||||
|
|
|
@ -14,6 +14,7 @@ body {
|
|||
min-width: 320px;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
// scroll-behavior: smooth;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue