2020-11-01 18:36:00 +01:00
|
|
|
<template>
|
2022-01-16 18:05:12 +01:00
|
|
|
<aside :class="{'is-active': menuActive}" class="namespace-container">
|
|
|
|
<nav class="menu top-menu">
|
2020-11-01 18:36:00 +01:00
|
|
|
<router-link :to="{name: 'home'}" class="logo">
|
2022-01-19 07:57:45 +01:00
|
|
|
<Logo width="164" height="48"/>
|
2020-11-01 18:36:00 +01:00
|
|
|
</router-link>
|
|
|
|
<ul class="menu-list">
|
|
|
|
<li>
|
2022-03-02 21:59:51 +01:00
|
|
|
<router-link :to="{ name: 'home'}" v-shortcut="'g o'">
|
2020-11-01 18:36:00 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="calendar"/>
|
|
|
|
</span>
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('navigation.overview') }}
|
2020-11-01 18:36:00 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
2022-03-02 21:59:51 +01:00
|
|
|
<router-link :to="{ name: 'tasks.range'}" v-shortcut="'g u'">
|
2020-11-01 18:36:00 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon :icon="['far', 'calendar-alt']"/>
|
|
|
|
</span>
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('navigation.upcoming') }}
|
2020-11-01 18:36:00 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
2022-03-02 21:59:51 +01:00
|
|
|
<router-link :to="{ name: 'namespaces.index'}" v-shortcut="'g n'">
|
2020-11-01 18:36:00 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="layer-group"/>
|
|
|
|
</span>
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('namespace.title') }}
|
2020-11-01 18:36:00 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
2022-03-02 21:59:51 +01:00
|
|
|
<router-link :to="{ name: 'labels.index'}" v-shortcut="'g a'">
|
2020-11-01 18:36:00 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="tags"/>
|
|
|
|
</span>
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('label.title') }}
|
2020-11-01 18:36:00 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
2020-12-23 21:28:32 +01:00
|
|
|
<li>
|
2022-03-02 21:59:51 +01:00
|
|
|
<router-link :to="{ name: 'teams.index'}" v-shortcut="'g m'">
|
2020-12-23 21:28:32 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="users"/>
|
|
|
|
</span>
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('team.title') }}
|
2020-12-23 21:28:32 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
2020-11-01 18:36:00 +01:00
|
|
|
</ul>
|
2022-01-16 18:05:12 +01:00
|
|
|
</nav>
|
2020-11-01 18:36:00 +01:00
|
|
|
|
2022-01-16 18:05:12 +01:00
|
|
|
<nav class="menu namespaces-lists loader-container is-loading-small" :class="{'is-loading': loading}">
|
2022-01-19 07:57:45 +01:00
|
|
|
<template v-for="(n, nk) in namespaces" :key="n.id">
|
2021-08-19 21:10:29 +02:00
|
|
|
<div class="namespace-title" :class="{'has-menu': n.id > 0}">
|
2021-02-20 16:28:45 +01:00
|
|
|
<span
|
|
|
|
@click="toggleLists(n.id)"
|
2020-11-01 18:36:00 +01:00
|
|
|
class="menu-label"
|
2022-01-19 07:57:45 +01:00
|
|
|
v-tooltip="namespaceTitles[nk]"
|
|
|
|
>
|
|
|
|
<span
|
|
|
|
v-if="n.hexColor !== ''"
|
|
|
|
:style="{ backgroundColor: n.hexColor }"
|
|
|
|
class="color-bubble"
|
|
|
|
/>
|
2020-11-01 18:36:00 +01:00
|
|
|
<span class="name">
|
2021-10-16 16:38:30 +02:00
|
|
|
{{ namespaceTitles[nk] }}
|
2020-11-01 18:36:00 +01:00
|
|
|
</span>
|
2022-01-19 07:57:45 +01:00
|
|
|
<a
|
|
|
|
class="icon is-small toggle-lists-icon pl-2"
|
|
|
|
:class="{'active': typeof listsVisible[n.id] !== 'undefined' ? listsVisible[n.id] : true}"
|
|
|
|
@click="toggleLists(n.id)"
|
|
|
|
>
|
|
|
|
<icon icon="chevron-down"/>
|
|
|
|
</a>
|
|
|
|
<span class="count" :class="{'ml-2 mr-0': n.id > 0}">
|
|
|
|
({{ namespaceListsCount[nk] }})
|
|
|
|
</span>
|
2021-02-20 16:28:45 +01:00
|
|
|
</span>
|
2021-01-30 17:17:04 +01:00
|
|
|
<namespace-settings-dropdown :namespace="n" v-if="n.id > 0"/>
|
2020-11-01 18:36:00 +01:00
|
|
|
</div>
|
2021-07-28 21:56:29 +02:00
|
|
|
<div
|
2021-11-02 19:20:14 +01:00
|
|
|
v-if="listsVisible[n.id] ?? true"
|
2021-07-28 21:56:29 +02:00
|
|
|
:key="n.id + 'child'"
|
|
|
|
class="more-container"
|
|
|
|
>
|
2021-08-23 21:24:52 +02:00
|
|
|
<!--
|
|
|
|
NOTE: a v-model / computed setter is not possible, since the updateActiveLists function
|
|
|
|
triggered by the change needs to have access to the current namespace
|
2022-01-19 07:57:45 +01:00
|
|
|
-->
|
2021-07-28 22:58:12 +02:00
|
|
|
<draggable
|
2021-09-08 11:59:46 +02:00
|
|
|
v-bind="dragOptions"
|
2021-08-23 21:18:12 +02:00
|
|
|
:modelValue="activeLists[nk]"
|
|
|
|
@update:modelValue="(lists) => updateActiveLists(n, lists)"
|
2022-01-29 22:12:46 +01:00
|
|
|
group="namespace-lists"
|
2021-07-28 22:58:12 +02:00
|
|
|
@start="() => drag = true"
|
2022-01-29 22:12:46 +01:00
|
|
|
@end="saveListPosition"
|
2021-07-28 22:58:12 +02:00
|
|
|
handle=".handle"
|
2021-10-17 18:52:05 +02:00
|
|
|
:disabled="n.id < 0 || null"
|
2021-08-20 15:46:41 +02:00
|
|
|
tag="transition-group"
|
|
|
|
item-key="id"
|
2022-01-29 22:12:46 +01:00
|
|
|
:data-namespace-id="n.id"
|
|
|
|
:data-namespace-index="nk"
|
2021-08-20 15:46:41 +02:00
|
|
|
:component-data="{
|
|
|
|
type: 'transition',
|
|
|
|
tag: 'ul',
|
|
|
|
name: !drag ? 'flip-list' : null,
|
|
|
|
class: [
|
|
|
|
'menu-list can-be-hidden',
|
|
|
|
{ 'dragging-disabled': n.id < 0 }
|
|
|
|
]
|
|
|
|
}"
|
2021-07-28 22:58:12 +02:00
|
|
|
>
|
2021-08-20 15:46:41 +02:00
|
|
|
<template #item="{element: l}">
|
2021-07-28 22:58:12 +02:00
|
|
|
<li
|
2021-11-13 20:49:02 +01:00
|
|
|
class="loader-container is-loading-small"
|
2021-07-28 22:58:12 +02:00
|
|
|
:class="{'is-loading': listUpdating[l.id]}"
|
|
|
|
>
|
|
|
|
<router-link
|
|
|
|
:to="{ name: 'list.index', params: { listId: l.id} }"
|
2021-08-20 15:17:19 +02:00
|
|
|
v-slot="{ href, navigate, isActive }"
|
|
|
|
custom
|
2020-11-01 18:36:00 +01:00
|
|
|
>
|
2021-08-20 15:17:19 +02:00
|
|
|
<a
|
|
|
|
@click="navigate"
|
|
|
|
:href="href"
|
|
|
|
class="list-menu-link"
|
2021-10-16 20:44:39 +02:00
|
|
|
:class="{'router-link-exact-active': isActive || currentList?.id === l.id}"
|
2021-08-20 15:17:19 +02:00
|
|
|
>
|
|
|
|
<span class="icon handle">
|
|
|
|
<icon icon="grip-lines"/>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
:style="{ backgroundColor: l.hexColor }"
|
|
|
|
class="color-bubble"
|
|
|
|
v-if="l.hexColor !== ''">
|
|
|
|
</span>
|
|
|
|
<span class="list-menu-title">
|
|
|
|
{{ getListTitle(l) }}
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
:class="{'is-favorite': l.isFavorite}"
|
2021-10-17 17:31:19 +02:00
|
|
|
@click.prevent.stop="toggleFavoriteList(l)"
|
2021-08-20 15:17:19 +02:00
|
|
|
class="favorite">
|
2022-01-19 07:57:45 +01:00
|
|
|
<icon :icon="l.isFavorite ? 'star' : ['far', 'star']"/>
|
2021-08-20 15:17:19 +02:00
|
|
|
</span>
|
|
|
|
</a>
|
2021-07-28 22:58:12 +02:00
|
|
|
</router-link>
|
|
|
|
<list-settings-dropdown :list="l" v-if="l.id > 0"/>
|
|
|
|
<span class="list-setting-spacer" v-else></span>
|
|
|
|
</li>
|
2021-08-20 15:46:41 +02:00
|
|
|
</template>
|
2021-07-28 22:58:12 +02:00
|
|
|
</draggable>
|
2020-11-01 18:36:00 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-01-16 18:05:12 +01:00
|
|
|
</nav>
|
2022-01-19 07:57:45 +01:00
|
|
|
<PoweredByLink/>
|
2022-01-16 18:05:12 +01:00
|
|
|
</aside>
|
2020-11-01 18:36:00 +01:00
|
|
|
</template>
|
|
|
|
|
2022-02-15 13:07:34 +01:00
|
|
|
<script lang="ts">
|
2022-02-15 13:07:59 +01:00
|
|
|
import {defineComponent} from 'vue'
|
|
|
|
|
2020-11-01 18:36:00 +01:00
|
|
|
import {mapState} from 'vuex'
|
2021-11-13 15:16:14 +01:00
|
|
|
import draggable from 'vuedraggable'
|
|
|
|
|
2021-07-25 15:27:15 +02:00
|
|
|
import ListSettingsDropdown from '@/components/list/list-settings-dropdown.vue'
|
2021-01-30 17:17:04 +01:00
|
|
|
import NamespaceSettingsDropdown from '@/components/namespace/namespace-settings-dropdown.vue'
|
2021-11-13 15:16:14 +01:00
|
|
|
import PoweredByLink from '@/components/home/PoweredByLink.vue'
|
|
|
|
import Logo from '@/components/home/Logo.vue'
|
|
|
|
|
|
|
|
import {CURRENT_LIST, MENU_ACTIVE, LOADING, LOADING_MODULE} from '@/store/mutation-types'
|
2021-07-28 21:56:29 +02:00
|
|
|
import {calculateItemPosition} from '@/helpers/calculateItemPosition'
|
2020-11-01 18:36:00 +01:00
|
|
|
|
2021-10-03 20:48:02 +02:00
|
|
|
|
2022-02-15 13:07:59 +01:00
|
|
|
export default defineComponent({
|
2020-11-01 18:36:00 +01:00
|
|
|
name: 'navigation',
|
2021-11-13 15:16:14 +01:00
|
|
|
|
|
|
|
components: {
|
|
|
|
ListSettingsDropdown,
|
|
|
|
NamespaceSettingsDropdown,
|
|
|
|
draggable,
|
|
|
|
Logo,
|
|
|
|
PoweredByLink,
|
|
|
|
},
|
|
|
|
|
2021-02-20 16:28:45 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
listsVisible: {},
|
2021-07-28 21:56:29 +02:00
|
|
|
drag: false,
|
|
|
|
dragOptions: {
|
|
|
|
animation: 100,
|
|
|
|
ghostClass: 'ghost',
|
|
|
|
},
|
|
|
|
listUpdating: {},
|
2021-02-20 16:28:45 +01:00
|
|
|
}
|
|
|
|
},
|
2021-08-23 21:24:52 +02:00
|
|
|
computed: {
|
|
|
|
...mapState({
|
|
|
|
namespaces: state => state.namespaces.namespaces.filter(n => !n.isArchived),
|
|
|
|
currentList: CURRENT_LIST,
|
|
|
|
background: 'background',
|
|
|
|
menuActive: MENU_ACTIVE,
|
|
|
|
loading: state => state[LOADING] && state[LOADING_MODULE] === 'namespaces',
|
|
|
|
}),
|
|
|
|
activeLists() {
|
2022-01-29 22:12:46 +01:00
|
|
|
return this.namespaces.map(({lists}) => lists?.filter(item => typeof item !== 'undefined' && !item.isArchived))
|
2021-10-16 16:38:30 +02:00
|
|
|
},
|
|
|
|
namespaceTitles() {
|
2022-01-19 07:57:45 +01:00
|
|
|
return this.namespaces.map((namespace) => this.getNamespaceTitle(namespace))
|
|
|
|
},
|
|
|
|
namespaceListsCount() {
|
|
|
|
return this.namespaces.map((_, index) => this.activeLists[index]?.length ?? 0)
|
2021-08-23 21:24:52 +02:00
|
|
|
},
|
|
|
|
},
|
2020-11-01 18:36:00 +01:00
|
|
|
beforeCreate() {
|
2021-10-11 19:37:20 +02:00
|
|
|
// FIXME: async action in beforeCreate, might be unfinished when component mounts
|
2020-11-01 18:36:00 +01:00
|
|
|
this.$store.dispatch('namespaces/loadNamespaces')
|
2021-02-20 16:28:45 +01:00
|
|
|
.then(namespaces => {
|
|
|
|
namespaces.forEach(n => {
|
2021-04-19 22:36:31 +02:00
|
|
|
if (typeof this.listsVisible[n.id] === 'undefined') {
|
2021-08-19 21:35:38 +02:00
|
|
|
this.listsVisible[n.id] = true
|
2021-04-19 22:36:31 +02:00
|
|
|
}
|
2021-02-20 16:28:45 +01:00
|
|
|
})
|
|
|
|
})
|
2020-11-01 18:36:00 +01:00
|
|
|
},
|
|
|
|
created() {
|
2020-12-10 14:52:35 +01:00
|
|
|
window.addEventListener('resize', this.resize)
|
2020-11-01 18:36:00 +01:00
|
|
|
},
|
2020-12-17 12:45:26 +01:00
|
|
|
mounted() {
|
|
|
|
this.resize()
|
|
|
|
},
|
2020-11-01 18:36:00 +01:00
|
|
|
methods: {
|
|
|
|
toggleFavoriteList(list) {
|
|
|
|
// The favorites pseudo list is always favorite
|
|
|
|
// Archived lists cannot be marked favorite
|
|
|
|
if (list.id === -1 || list.isArchived) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.$store.dispatch('lists/toggleListFavorite', list)
|
|
|
|
},
|
2020-12-10 14:52:35 +01:00
|
|
|
resize() {
|
|
|
|
// Hide the menu by default on mobile
|
2021-10-16 16:38:51 +02:00
|
|
|
this.$store.commit(MENU_ACTIVE, window.innerWidth >= 770)
|
2020-12-10 14:52:35 +01:00
|
|
|
},
|
2021-02-20 16:28:45 +01:00
|
|
|
toggleLists(namespaceId) {
|
2021-10-16 16:38:30 +02:00
|
|
|
this.listsVisible[namespaceId] = !this.listsVisible[namespaceId]
|
2021-02-20 16:28:45 +01:00
|
|
|
},
|
2021-08-23 21:24:52 +02:00
|
|
|
updateActiveLists(namespace, activeLists) {
|
2022-01-29 22:12:46 +01:00
|
|
|
// This is a bit hacky: since we do have to filter out the archived items from the list
|
2021-08-23 21:24:52 +02:00
|
|
|
// for vue draggable updating it is not as simple as replacing it.
|
2022-01-29 22:12:46 +01:00
|
|
|
// To work around this, we merge the active lists with the archived ones. Doing so breaks the order
|
|
|
|
// because now all archived lists are sorted after the active ones. This is fine because they are sorted
|
|
|
|
// later when showing them anyway, and it makes the merging happening here a lot easier.
|
|
|
|
const lists = [
|
|
|
|
...activeLists,
|
|
|
|
...namespace.lists.filter(l => l.isArchived),
|
|
|
|
]
|
2021-08-23 21:24:52 +02:00
|
|
|
|
|
|
|
const newNamespace = {
|
|
|
|
...namespace,
|
|
|
|
lists,
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$store.commit('namespaces/setNamespaceById', newNamespace)
|
|
|
|
},
|
2021-10-11 19:37:20 +02:00
|
|
|
|
2022-01-29 22:12:46 +01:00
|
|
|
async saveListPosition(e) {
|
|
|
|
const namespaceId = parseInt(e.to.dataset.namespaceId)
|
|
|
|
const newNamespaceIndex = parseInt(e.to.dataset.namespaceIndex)
|
|
|
|
|
|
|
|
const listsActive = this.activeLists[newNamespaceIndex]
|
2021-08-23 21:24:52 +02:00
|
|
|
const list = listsActive[e.newIndex]
|
|
|
|
const listBefore = listsActive[e.newIndex - 1] ?? null
|
|
|
|
const listAfter = listsActive[e.newIndex + 1] ?? null
|
2021-08-19 21:35:38 +02:00
|
|
|
this.listUpdating[list.id] = true
|
2021-07-28 21:56:29 +02:00
|
|
|
|
2021-08-23 21:24:52 +02:00
|
|
|
const position = calculateItemPosition(listBefore !== null ? listBefore.position : null, listAfter !== null ? listAfter.position : null)
|
2021-07-28 21:56:29 +02:00
|
|
|
|
2021-10-11 19:37:20 +02:00
|
|
|
try {
|
|
|
|
// create a copy of the list in order to not violate vuex mutations
|
|
|
|
await this.$store.dispatch('lists/updateList', {
|
|
|
|
...list,
|
|
|
|
position,
|
2022-01-29 22:12:46 +01:00
|
|
|
namespaceId,
|
2021-07-28 21:56:29 +02:00
|
|
|
})
|
2021-10-11 19:37:20 +02:00
|
|
|
} finally {
|
|
|
|
this.listUpdating[list.id] = false
|
|
|
|
}
|
2021-07-28 21:56:29 +02:00
|
|
|
},
|
2020-11-01 18:36:00 +01:00
|
|
|
},
|
2022-02-15 13:07:59 +01:00
|
|
|
})
|
2020-11-01 18:36:00 +01:00
|
|
|
</script>
|
2021-05-19 17:26:05 +02:00
|
|
|
|
2021-10-18 14:33:23 +02:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
$navbar-padding: 2rem;
|
2021-11-22 22:12:54 +01:00
|
|
|
$vikunja-nav-background: var(--site-background);
|
|
|
|
$vikunja-nav-color: var(--grey-700);
|
2021-10-18 14:33:23 +02:00
|
|
|
$vikunja-nav-selected-width: 0.4rem;
|
|
|
|
|
|
|
|
.namespace-container {
|
|
|
|
z-index: 6;
|
2021-11-02 19:20:14 +01:00
|
|
|
background: $vikunja-nav-background;
|
2021-10-18 14:33:23 +02:00
|
|
|
color: $vikunja-nav-color;
|
2021-11-02 19:20:14 +01:00
|
|
|
padding: 0 0 1rem;
|
|
|
|
transition: transform $transition-duration ease-in;
|
2021-10-18 14:33:23 +02:00
|
|
|
position: fixed;
|
|
|
|
top: $navbar-height;
|
2021-11-02 19:20:14 +01:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
transform: translateX(-100%);
|
2021-10-18 14:33:23 +02:00
|
|
|
overflow-x: auto;
|
|
|
|
width: $navbar-width;
|
|
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: $tablet) {
|
|
|
|
top: 0;
|
|
|
|
width: 70vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-active {
|
2021-11-02 19:20:14 +01:00
|
|
|
transform: translateX(0);
|
|
|
|
transition: transform $transition-duration ease-out;
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
.menu-label {
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 700;
|
|
|
|
font-weight: bold;
|
|
|
|
font-family: $vikunja-font;
|
|
|
|
color: $vikunja-nav-color;
|
|
|
|
font-weight: 500;
|
|
|
|
min-height: 2.5rem;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-left: $navbar-padding;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-label,
|
|
|
|
.menu-list span.list-menu-link,
|
|
|
|
.menu-list a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.list-menu-title {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-bubble {
|
|
|
|
height: 12px;
|
|
|
|
flex: 0 0 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.favorite {
|
|
|
|
margin-left: .25rem;
|
|
|
|
transition: opacity $transition, color $transition;
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
&:hover {
|
2021-11-22 22:12:54 +01:00
|
|
|
color: var(--warning);
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-favorite {
|
|
|
|
opacity: 1;
|
2021-11-22 22:12:54 +01:00
|
|
|
color: var(--warning);
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .favorite {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-label {
|
|
|
|
.color-bubble {
|
2022-01-19 07:57:45 +01:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
flex-basis: auto;
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.is-archived {
|
|
|
|
min-width: 85px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.namespace-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.menu-label {
|
|
|
|
margin-bottom: 0;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
.name {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2022-01-19 07:57:45 +01:00
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.count {
|
|
|
|
color: var(--grey-500);
|
|
|
|
margin-right: .5rem;
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a:not(.dropdown-item) {
|
|
|
|
color: $vikunja-nav-color;
|
|
|
|
padding: 0 .25rem;
|
|
|
|
}
|
|
|
|
|
2021-10-20 14:33:36 +02:00
|
|
|
:deep(.dropdown-trigger) {
|
2021-10-18 14:33:23 +02:00
|
|
|
padding: .5rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-lists-icon {
|
|
|
|
svg {
|
|
|
|
transition: all $transition;
|
|
|
|
transform: rotate(90deg);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active svg {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .toggle-lists-icon svg {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.has-menu) .toggle-lists-icon {
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-label,
|
|
|
|
.nsettings,
|
|
|
|
.menu-list span.list-menu-link,
|
|
|
|
.menu-list a {
|
|
|
|
color: $vikunja-nav-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-list {
|
|
|
|
li {
|
|
|
|
height: 44px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2021-10-20 14:33:36 +02:00
|
|
|
&:hover {
|
2021-11-22 22:12:54 +01:00
|
|
|
background: var(--white);
|
2021-10-20 14:33:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.dropdown-trigger) {
|
2021-10-18 14:33:23 +02:00
|
|
|
opacity: 0;
|
|
|
|
padding: .5rem;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: $transition;
|
|
|
|
}
|
|
|
|
|
2021-10-20 14:33:36 +02:00
|
|
|
&:hover :deep(.dropdown-trigger) {
|
|
|
|
opacity: 1;
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flip-list-move {
|
|
|
|
transition: transform $transition-duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ghost {
|
2021-11-22 22:12:54 +01:00
|
|
|
background: var(--grey-200);
|
2021-10-18 14:33:23 +02:00
|
|
|
|
|
|
|
* {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.list-menu-link, li > a {
|
|
|
|
padding: 0.75rem .5rem 0.75rem ($navbar-padding * 1.5 - 1.75rem);
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
border-left: $vikunja-nav-selected-width solid transparent;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
height: 1rem;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-right: 0.5rem;
|
2022-01-19 07:57:45 +01:00
|
|
|
|
2021-10-18 14:33:23 +02:00
|
|
|
&.handle {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity $transition;
|
|
|
|
margin-right: .25rem;
|
|
|
|
cursor: grab;
|
|
|
|
}
|
|
|
|
}
|
2022-01-19 07:57:45 +01:00
|
|
|
|
2021-10-18 14:33:23 +02:00
|
|
|
&:hover .icon.handle {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.router-link-exact-active {
|
2021-11-22 22:12:54 +01:00
|
|
|
color: var(--primary);
|
|
|
|
border-left: $vikunja-nav-selected-width solid var(--primary);
|
2021-10-18 14:33:23 +02:00
|
|
|
|
|
|
|
.icon {
|
2021-11-22 22:12:54 +01:00
|
|
|
color: var(--primary);
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2021-11-22 22:12:54 +01:00
|
|
|
border-left: $vikunja-nav-selected-width solid var(--primary);
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
2021-11-13 15:16:14 +01:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
padding-left: 2rem;
|
|
|
|
margin-right: 1rem;
|
2021-10-18 14:33:23 +02:00
|
|
|
|
2021-11-13 15:16:14 +01:00
|
|
|
@media screen and (min-width: $tablet) {
|
|
|
|
display: none;
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.namespaces-lists {
|
|
|
|
padding-top: math.div($navbar-padding, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
2021-11-22 22:12:54 +01:00
|
|
|
color: var(--grey-400) !important;
|
2021-10-18 14:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-menu {
|
|
|
|
margin-top: math.div($navbar-padding, 2);
|
|
|
|
|
|
|
|
.menu-list {
|
|
|
|
li {
|
|
|
|
font-weight: 500;
|
|
|
|
font-family: $vikunja-font;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.list-menu-link, li > a {
|
|
|
|
padding-left: 2rem;
|
|
|
|
display: inline-block;
|
2022-01-19 07:57:45 +01:00
|
|
|
|
2021-10-18 14:33:23 +02:00
|
|
|
.icon {
|
|
|
|
padding-bottom: .25rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 17:26:05 +02:00
|
|
|
.list-setting-spacer {
|
|
|
|
width: 32px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2022-01-05 13:46:33 +01:00
|
|
|
|
|
|
|
.namespaces-list.loader-container.is-loading {
|
|
|
|
min-height: calc(100vh - #{$navbar-height + 1.5rem + 1rem + 1.5rem});
|
|
|
|
}
|
2021-05-19 17:26:05 +02:00
|
|
|
</style>
|