mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-04-24 16:53:37 +00:00
* Expand SCSS variables for improved theming * Redesign 404 page with dynamic movie quotes * Add password generator page * Add missing Plex authentication page * Improve torrent table and torrents page * Enhance toast notification component * Enhance popup components * Refine UI components and remove DarkmodeToggle * Add user profile component for settings * Update autocomplete dropdown component * Update register page * Redesign signin and register pages with improved UX * Improve torrent table with sort toggle and highlight colors * eslint & prettier fixes
97 lines
1.7 KiB
Vue
97 lines
1.7 KiB
Vue
<template>
|
|
<li
|
|
class="sidebar-list-element"
|
|
:class="{ active, disabled }"
|
|
:tabindex="disabled ? -1 : 0"
|
|
role="button"
|
|
:aria-disabled="disabled"
|
|
@click="emit('click')"
|
|
@keydown.enter.prevent="emit('click')"
|
|
@keydown.space.prevent="emit('click')"
|
|
>
|
|
<slot></slot>
|
|
</li>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
interface Props {
|
|
active?: boolean;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
interface Emit {
|
|
(e: "click");
|
|
}
|
|
|
|
const emit = defineEmits<Emit>();
|
|
defineProps<Props>();
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "scss/media-queries";
|
|
|
|
li.sidebar-list-element {
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
color: var(--text-color-50);
|
|
font-size: 12px;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--text-color-5);
|
|
cursor: pointer;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
|
|
&:first-of-type {
|
|
padding-top: 0;
|
|
}
|
|
|
|
div > svg,
|
|
svg {
|
|
width: 26px;
|
|
height: 26px;
|
|
margin-right: 1rem;
|
|
transition: all 0.3s ease;
|
|
fill: var(--text-color-70);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&.active {
|
|
color: var(--text-color);
|
|
outline: none;
|
|
|
|
div > svg,
|
|
svg {
|
|
fill: var(--text-color);
|
|
transform: scale(1.1, 1.1);
|
|
}
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: 2px solid var(--highlight-color);
|
|
outline-offset: 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
&.active > div > svg,
|
|
&.active > svg {
|
|
fill: var(--highlight-color);
|
|
}
|
|
|
|
&.disabled {
|
|
cursor: default;
|
|
}
|
|
|
|
.pending {
|
|
color: #f8bd2d;
|
|
}
|
|
|
|
.meta {
|
|
margin-left: auto;
|
|
text-align: right;
|
|
}
|
|
}
|
|
</style>
|