Added studios to filters and scene page.

This commit is contained in:
2024-09-03 05:56:14 +02:00
parent c3362e614e
commit 60c7e2a876
12 changed files with 108 additions and 19 deletions

View File

@@ -76,6 +76,19 @@
/>
<div class="children-container">
<div
v-show="expanded"
class="expand-container expand-top"
>
<button
class="expand"
@click="expanded = !expanded"
>
<span class="expand-text">Collapse channels</span>
<Icon icon="arrow-up3" />
</button>
</div>
<ul
v-if="entity.children.length > 0"
ref="children"
@@ -252,7 +265,7 @@ const entityUrl = (() => {
align-items: center;
padding: .5rem;
border: none;
background: var(--grey-dark-50);
background: var(--grey-dark-40);
color: var(--highlight-strong-30);
font-size: .9rem;
font-weight: bold;
@@ -274,6 +287,17 @@ const entityUrl = (() => {
}
}
.expand-top {
height: 0;
top: 3.5rem;
bottom: auto;
position: sticky;
.expand {
height: 2rem;
}
}
.domains-bar {
display: none;
}