mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 19:37:48 +01:00
add new ui for tabs
This commit is contained in:
parent
26ef02da9e
commit
31d0a12a44
1 changed files with 49 additions and 17 deletions
|
@ -66,6 +66,42 @@ summary:hover{
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
|
|
||||||
|
.tags.rec {
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: expanded;
|
||||||
|
overflow:hidden;
|
||||||
|
width: auto;
|
||||||
|
max-width: fit-content;
|
||||||
|
margin-right: auto;
|
||||||
|
padding-left: 1.5em;
|
||||||
|
margin-top: 7px;
|
||||||
|
display: flex;
|
||||||
|
gap: 3px;
|
||||||
|
margin-inline: auto;
|
||||||
|
margin-left: 8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tags.rec:hover{
|
||||||
|
overflow-x:auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags.rec > .tag {
|
||||||
|
border-radius: 8px;
|
||||||
|
background:var(--chip-background-hover);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 4px;
|
||||||
|
word-break: break-all;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-family: ubuntu, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.info > div {
|
.info > div {
|
||||||
font-family:Ubuntu, sans-serif;
|
font-family:Ubuntu, sans-serif;
|
||||||
}
|
}
|
||||||
|
@ -367,23 +403,19 @@ video[counter].classList.add("shake");
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="channel-page" style="background-color: var(--channel-contents-background);">
|
<div class="channel-page" style="background-color: var(--channel-contents-background);">
|
||||||
|
<div class="tags rec">
|
||||||
<div class="tabs tabs-center">
|
|
||||||
<% if (tab) { %>
|
<a style=" background: #111;" class="tag">
|
||||||
<a href="/search?query=<%=q%>" class="tab">Videos</a>
|
Videos
|
||||||
|
</a>
|
||||||
<a class="tab active">Web</a>
|
|
||||||
<% } %>
|
<a href="/web?query=<%=q%>" style="color:#fff;text-decoration:none;
|
||||||
<% if (!tab) { %>
|
" class="tag c">
|
||||||
<a class="tab active">Videos</a>
|
Web </a>
|
||||||
|
|
||||||
<a href="/web?query=<%=q%>" class="tab">Web</a>
|
</div>
|
||||||
<% } %>
|
|
||||||
|
<% if (!tab) { %>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<% if (!tab) { %>
|
|
||||||
|
|
||||||
<% if (Array.isArray( j.Search.Results.Video)) { %>
|
<% if (Array.isArray( j.Search.Results.Video)) { %>
|
||||||
<center>
|
<center>
|
||||||
|
|
Loading…
Reference in a new issue