2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
2023-04-04 00:38:34 +00:00
|
|
|
<div role="menu">
|
2022-07-17 12:06:33 +00:00
|
|
|
<div
|
|
|
|
ref="itemsEl" v-hotkey="keymap"
|
2023-01-09 21:02:46 +00:00
|
|
|
class="_popup _shadow"
|
|
|
|
:class="[$style.root, { [$style.center]: align === 'center', [$style.asDrawer]: asDrawer }]"
|
2022-07-17 12:06:33 +00:00
|
|
|
:style="{ width: (width && !asDrawer) ? width + 'px' : '', maxHeight: maxHeight ? maxHeight + 'px' : '' }"
|
|
|
|
@contextmenu.self="e => e.preventDefault()"
|
|
|
|
>
|
|
|
|
<template v-for="(item, i) in items2">
|
2023-12-12 01:26:37 +00:00
|
|
|
<div v-if="item.type === 'divider'" role="separator" :class="$style.divider"></div>
|
2023-04-04 00:38:34 +00:00
|
|
|
<span v-else-if="item.type === 'label'" role="menuitem" :class="[$style.label, $style.item]">
|
2023-12-22 11:41:42 +00:00
|
|
|
<span style="opacity: 0.7;">{{ item.text }}</span>
|
2022-07-17 12:06:33 +00:00
|
|
|
</span>
|
2023-04-04 00:38:34 +00:00
|
|
|
<span v-else-if="item.type === 'pending'" role="menuitem" :tabindex="i" :class="[$style.pending, $style.item]">
|
2022-07-17 12:06:33 +00:00
|
|
|
<span><MkEllipsis/></span>
|
|
|
|
</span>
|
2023-04-04 00:38:34 +00:00
|
|
|
<MkA v-else-if="item.type === 'link'" role="menuitem" :to="item.to" :tabindex="i" class="_button" :class="$style.item" @click.passive="close(true)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
2023-01-09 21:02:46 +00:00
|
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
|
2023-01-16 05:18:11 +00:00
|
|
|
<MkAvatar v-if="item.avatar" :user="item.avatar" :class="$style.avatar"/>
|
2023-12-22 11:41:42 +00:00
|
|
|
<div :class="$style.item_content">
|
|
|
|
<span :class="$style.item_content_text">{{ item.text }}</span>
|
|
|
|
<span v-if="item.indicate" :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
|
|
</div>
|
2022-07-17 12:06:33 +00:00
|
|
|
</MkA>
|
2023-04-04 00:38:34 +00:00
|
|
|
<a v-else-if="item.type === 'a'" role="menuitem" :href="item.href" :target="item.target" :download="item.download" :tabindex="i" class="_button" :class="$style.item" @click="close(true)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
2023-01-09 21:02:46 +00:00
|
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
|
2023-12-22 11:41:42 +00:00
|
|
|
<div :class="$style.item_content">
|
|
|
|
<span :class="$style.item_content_text">{{ item.text }}</span>
|
|
|
|
<span v-if="item.indicate" :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
|
|
</div>
|
2022-07-17 12:06:33 +00:00
|
|
|
</a>
|
2023-04-04 00:38:34 +00:00
|
|
|
<button v-else-if="item.type === 'user'" role="menuitem" :tabindex="i" class="_button" :class="[$style.item, { [$style.active]: item.active }]" :disabled="item.active" @click="clicked(item.action, $event)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
2023-02-08 11:07:19 +00:00
|
|
|
<MkAvatar :user="item.user" :class="$style.avatar"/><MkUserName :user="item.user"/>
|
2023-12-22 11:41:42 +00:00
|
|
|
<div v-if="item.indicate" :class="$style.item_content">
|
|
|
|
<span :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
|
|
</div>
|
2022-07-17 12:06:33 +00:00
|
|
|
</button>
|
2023-08-01 06:32:03 +00:00
|
|
|
<button v-else-if="item.type === 'switch'" role="menuitemcheckbox" :tabindex="i" class="_button" :class="[$style.item, $style.switch, { [$style.switchDisabled]: item.disabled } ]" @click="switchItem(item)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
2023-09-23 03:43:32 +00:00
|
|
|
<MkSwitchButton :class="$style.switchButton" :checked="item.ref" :disabled="item.disabled" @toggle="switchItem(item)"/>
|
2023-12-22 11:41:42 +00:00
|
|
|
<div :class="$style.item_content">
|
|
|
|
<span :class="[$style.item_content_text, $style.switchText]">{{ item.text }}</span>
|
|
|
|
</div>
|
2023-08-01 06:32:03 +00:00
|
|
|
</button>
|
2023-09-23 03:43:32 +00:00
|
|
|
<button v-else-if="item.type === 'parent'" class="_button" role="menuitem" :tabindex="i" :class="[$style.item, $style.parent, { [$style.childShowing]: childShowingItem === item }]" @mouseenter="preferClick ? null : showChildren(item, $event)" @click="!preferClick ? null : showChildren(item, $event)">
|
2023-09-23 11:35:05 +00:00
|
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]" style="pointer-events: none;"></i>
|
2023-12-22 11:41:42 +00:00
|
|
|
<div :class="$style.item_content">
|
|
|
|
<span :class="$style.item_content_text" style="pointer-events: none;">{{ item.text }}</span>
|
2023-12-23 01:09:23 +00:00
|
|
|
<span :class="$style.caret" style="pointer-events: none;"><i class="ph-caret-right ph-bold ph-lg ti-fw"></i></span>
|
2023-12-22 11:41:42 +00:00
|
|
|
</div>
|
2023-09-23 03:43:32 +00:00
|
|
|
</button>
|
2023-04-04 00:38:34 +00:00
|
|
|
<button v-else :tabindex="i" class="_button" role="menuitem" :class="[$style.item, { [$style.danger]: item.danger, [$style.active]: item.active }]" :disabled="item.active" @click="clicked(item.action, $event)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
2023-01-09 21:02:46 +00:00
|
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
|
2023-01-16 05:18:11 +00:00
|
|
|
<MkAvatar v-if="item.avatar" :user="item.avatar" :class="$style.avatar"/>
|
2023-12-22 11:41:42 +00:00
|
|
|
<div :class="$style.item_content">
|
|
|
|
<span :class="$style.item_content_text">{{ item.text }}</span>
|
|
|
|
<span v-if="item.indicate" :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
|
|
</div>
|
2022-07-17 12:06:33 +00:00
|
|
|
</button>
|
|
|
|
</template>
|
2023-01-09 21:02:46 +00:00
|
|
|
<span v-if="items2.length === 0" :class="[$style.none, $style.item]">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span>{{ i18n.ts.none }}</span>
|
2020-10-17 11:12:00 +00:00
|
|
|
</span>
|
2022-07-17 12:06:33 +00:00
|
|
|
</div>
|
2023-06-01 08:19:46 +00:00
|
|
|
<div v-if="childMenu">
|
2023-08-09 00:08:47 +00:00
|
|
|
<XChild ref="child" :items="childMenu" :targetElement="childTarget" :rootElement="itemsEl" showing @actioned="childActioned" @close="close(false)"/>
|
2022-07-17 12:06:33 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-08-09 00:08:47 +00:00
|
|
|
<script lang="ts">
|
2023-12-21 02:36:45 +00:00
|
|
|
import { computed, defineAsyncComponent, nextTick, onBeforeUnmount, onMounted, ref, shallowRef, watch } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { focusPrev, focusNext } from '@/scripts/focus.js';
|
2023-08-01 06:32:03 +00:00
|
|
|
import MkSwitchButton from '@/components/MkSwitch.button.vue';
|
2023-12-24 07:16:58 +00:00
|
|
|
import { MenuItem, InnerMenuItem, MenuPending, MenuAction, MenuSwitch, MenuParent } from '@/types/menu.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { isTouchUsing } from '@/scripts/touch.js';
|
2023-08-09 00:08:47 +00:00
|
|
|
|
|
|
|
const childrenCache = new WeakMap<MenuParent, MenuItem[]>();
|
|
|
|
</script>
|
2022-07-20 13:24:26 +00:00
|
|
|
|
2023-08-09 00:08:47 +00:00
|
|
|
<script lang="ts" setup>
|
2022-09-06 09:21:49 +00:00
|
|
|
const XChild = defineAsyncComponent(() => import('./MkMenu.child.vue'));
|
2022-01-30 05:11:52 +00:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
items: MenuItem[];
|
|
|
|
viaKeyboard?: boolean;
|
|
|
|
asDrawer?: boolean;
|
|
|
|
align?: 'center' | string;
|
|
|
|
width?: number;
|
|
|
|
maxHeight?: number;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2022-07-17 12:06:33 +00:00
|
|
|
(ev: 'close', actioned?: boolean): void;
|
2023-08-09 00:08:47 +00:00
|
|
|
(ev: 'hide'): void;
|
2022-01-30 05:11:52 +00:00
|
|
|
}>();
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const itemsEl = shallowRef<HTMLDivElement>();
|
2022-01-30 05:11:52 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const items2 = ref<InnerMenuItem[]>([]);
|
2022-01-30 05:11:52 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const child = shallowRef<InstanceType<typeof XChild>>();
|
2022-07-17 12:06:33 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const keymap = computed(() => ({
|
2022-01-30 05:11:52 +00:00
|
|
|
'up|k|shift+tab': focusUp,
|
|
|
|
'down|j|tab': focusDown,
|
|
|
|
'esc': close,
|
|
|
|
}));
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const childShowingItem = ref<MenuItem | null>();
|
2022-07-17 12:06:33 +00:00
|
|
|
|
2023-08-09 00:08:47 +00:00
|
|
|
let preferClick = isTouchUsing || props.asDrawer;
|
|
|
|
|
2022-01-30 05:11:52 +00:00
|
|
|
watch(() => props.items, () => {
|
|
|
|
const items: (MenuItem | MenuPending)[] = [...props.items].filter(item => item !== undefined);
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
const item = items[i];
|
|
|
|
|
|
|
|
if (item && 'then' in item) { // if item is Promise
|
|
|
|
items[i] = { type: 'pending' };
|
|
|
|
item.then(actualItem => {
|
2023-12-07 05:42:09 +00:00
|
|
|
items2.value[i] = actualItem;
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
|
|
|
}
|
2022-01-30 05:11:52 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
items2.value = items as InnerMenuItem[];
|
2022-01-30 05:11:52 +00:00
|
|
|
}, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-08-09 00:08:47 +00:00
|
|
|
const childMenu = ref<MenuItem[] | null>();
|
2023-12-07 05:42:09 +00:00
|
|
|
const childTarget = shallowRef<HTMLElement | null>();
|
2022-07-17 12:06:33 +00:00
|
|
|
|
|
|
|
function closeChild() {
|
2023-02-24 11:48:19 +00:00
|
|
|
childMenu.value = null;
|
2023-12-07 05:42:09 +00:00
|
|
|
childShowingItem.value = null;
|
2022-07-17 12:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function childActioned() {
|
|
|
|
closeChild();
|
|
|
|
close(true);
|
|
|
|
}
|
|
|
|
|
2023-08-09 00:08:47 +00:00
|
|
|
const onGlobalMousedown = (event: MouseEvent) => {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (childTarget.value && (event.target === childTarget.value || childTarget.value.contains(event.target))) return;
|
|
|
|
if (child.value && child.value.checkHit(event)) return;
|
2022-07-17 12:06:33 +00:00
|
|
|
closeChild();
|
2023-08-09 00:08:47 +00:00
|
|
|
};
|
2022-07-17 12:06:33 +00:00
|
|
|
|
|
|
|
let childCloseTimer: null | number = null;
|
2023-10-29 07:09:20 +00:00
|
|
|
|
2022-07-17 12:06:33 +00:00
|
|
|
function onItemMouseEnter(item) {
|
|
|
|
childCloseTimer = window.setTimeout(() => {
|
|
|
|
closeChild();
|
|
|
|
}, 300);
|
|
|
|
}
|
2023-10-29 07:09:20 +00:00
|
|
|
|
2022-07-17 12:06:33 +00:00
|
|
|
function onItemMouseLeave(item) {
|
|
|
|
if (childCloseTimer) window.clearTimeout(childCloseTimer);
|
|
|
|
}
|
|
|
|
|
2023-08-01 06:32:03 +00:00
|
|
|
async function showChildren(item: MenuParent, ev: MouseEvent) {
|
2023-08-09 00:08:47 +00:00
|
|
|
const children = await (async () => {
|
|
|
|
if (childrenCache.has(item)) {
|
|
|
|
return childrenCache.get(item)!;
|
2023-02-24 11:48:19 +00:00
|
|
|
} else {
|
2023-08-09 00:08:47 +00:00
|
|
|
if (typeof item.children === 'function') {
|
|
|
|
return Promise.resolve(item.children());
|
|
|
|
} else {
|
|
|
|
return item.children;
|
|
|
|
}
|
2023-02-24 11:48:19 +00:00
|
|
|
}
|
2023-08-09 00:08:47 +00:00
|
|
|
})();
|
|
|
|
|
|
|
|
childrenCache.set(item, children);
|
2023-02-24 11:48:19 +00:00
|
|
|
|
2022-07-17 12:06:33 +00:00
|
|
|
if (props.asDrawer) {
|
2023-08-09 00:08:47 +00:00
|
|
|
os.popupMenu(children, ev.currentTarget ?? ev.target).finally(() => {
|
|
|
|
emit('close');
|
|
|
|
});
|
|
|
|
emit('hide');
|
2022-07-17 12:06:33 +00:00
|
|
|
} else {
|
2023-12-07 05:42:09 +00:00
|
|
|
childTarget.value = ev.currentTarget ?? ev.target;
|
2023-08-09 00:08:47 +00:00
|
|
|
// これでもリアクティビティは保たれる
|
|
|
|
childMenu.value = children;
|
2023-12-07 05:42:09 +00:00
|
|
|
childShowingItem.value = item;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2022-07-17 12:06:33 +00:00
|
|
|
}
|
2022-01-30 05:11:52 +00:00
|
|
|
|
|
|
|
function clicked(fn: MenuAction, ev: MouseEvent) {
|
|
|
|
fn(ev);
|
2022-07-17 12:06:33 +00:00
|
|
|
close(true);
|
2022-01-30 05:11:52 +00:00
|
|
|
}
|
|
|
|
|
2022-07-17 12:06:33 +00:00
|
|
|
function close(actioned = false) {
|
|
|
|
emit('close', actioned);
|
2022-01-30 05:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function focusUp() {
|
|
|
|
focusPrev(document.activeElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
function focusDown() {
|
|
|
|
focusNext(document.activeElement);
|
|
|
|
}
|
2022-07-17 12:06:33 +00:00
|
|
|
|
2023-08-01 06:32:03 +00:00
|
|
|
function switchItem(item: MenuSwitch & { ref: any }) {
|
2023-12-06 03:07:53 +00:00
|
|
|
if (item.disabled !== undefined && (typeof item.disabled === 'boolean' ? item.disabled : item.disabled.value)) return;
|
2023-08-01 06:32:03 +00:00
|
|
|
item.ref = !item.ref;
|
|
|
|
}
|
|
|
|
|
2022-07-17 12:06:33 +00:00
|
|
|
onMounted(() => {
|
|
|
|
if (props.viaKeyboard) {
|
|
|
|
nextTick(() => {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (itemsEl.value) focusNext(itemsEl.value.children[0], true, false);
|
2022-07-17 12:06:33 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-12-08 04:44:38 +00:00
|
|
|
// TODO: アクティブな要素までスクロール
|
|
|
|
//itemsEl.scrollTo();
|
|
|
|
|
2022-07-17 12:06:33 +00:00
|
|
|
document.addEventListener('mousedown', onGlobalMousedown, { passive: true });
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
document.removeEventListener('mousedown', onGlobalMousedown);
|
|
|
|
});
|
2020-10-17 11:12:00 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-10-17 11:12:00 +00:00
|
|
|
padding: 8px 0;
|
2021-11-28 11:07:37 +00:00
|
|
|
box-sizing: border-box;
|
2023-12-22 11:41:42 +00:00
|
|
|
max-width: 100vw;
|
2021-10-03 06:39:39 +00:00
|
|
|
min-width: 200px;
|
2021-11-05 01:48:37 +00:00
|
|
|
overflow: auto;
|
2021-12-03 03:00:11 +00:00
|
|
|
overscroll-behavior: contain;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-10-03 06:39:39 +00:00
|
|
|
&.center {
|
2020-10-17 11:12:00 +00:00
|
|
|
> .item {
|
2021-10-03 06:39:39 +00:00
|
|
|
text-align: center;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&.asDrawer {
|
2023-01-10 04:50:34 +00:00
|
|
|
padding: 12px 0 max(env(safe-area-inset-bottom, 0px), 12px) 0;
|
2020-10-17 11:12:00 +00:00
|
|
|
width: 100%;
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-lg);
|
2023-01-09 21:02:46 +00:00
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
2021-10-03 06:39:39 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
> .item {
|
|
|
|
font-size: 1em;
|
|
|
|
padding: 12px 24px;
|
2022-06-05 03:23:57 +00:00
|
|
|
|
|
|
|
&:before {
|
2023-01-09 21:02:46 +00:00
|
|
|
width: calc(100% - 24px);
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius);
|
2022-06-05 03:23:57 +00:00
|
|
|
}
|
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
> .icon {
|
|
|
|
margin-right: 14px;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
> .divider {
|
|
|
|
margin: 12px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-03 06:39:39 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
.item {
|
2023-12-22 11:41:42 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-01-09 21:02:46 +00:00
|
|
|
position: relative;
|
|
|
|
padding: 5px 16px;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-size: 0.9em;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: left;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: calc(100% - 16px);
|
|
|
|
height: 100%;
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-sm);
|
2023-01-09 21:02:46 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:not(:disabled):hover {
|
|
|
|
color: var(--accent);
|
|
|
|
text-decoration: none;
|
2021-10-03 06:39:39 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:before {
|
|
|
|
background: var(--accentedBg);
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2023-01-09 21:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.danger {
|
|
|
|
color: #ff2a2a;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
2021-10-09 04:12:41 +00:00
|
|
|
|
|
|
|
&:before {
|
2023-01-09 21:02:46 +00:00
|
|
|
background: #ff4242;
|
2021-10-09 04:12:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:active {
|
|
|
|
color: #fff;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:before {
|
|
|
|
background: #d42e2e !important;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-09 21:02:46 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
color: var(--fgOnAccent) !important;
|
|
|
|
opacity: 1;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:before {
|
|
|
|
background: var(--accent) !important;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2023-01-09 21:02:46 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&:not(:active):focus-visible {
|
|
|
|
box-shadow: 0 0 0 2px var(--focus) inset;
|
|
|
|
}
|
2022-07-17 12:06:33 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&.label {
|
|
|
|
pointer-events: none;
|
|
|
|
font-size: 0.7em;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&.pending {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0.7;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&.none {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0.7;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2021-12-16 17:14:40 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&.parent {
|
2023-08-09 00:08:47 +00:00
|
|
|
pointer-events: auto;
|
2023-01-09 21:02:46 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: default;
|
2021-12-16 17:14:40 +00:00
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
&.childShowing {
|
|
|
|
color: var(--accent);
|
|
|
|
text-decoration: none;
|
2021-12-16 17:14:40 +00:00
|
|
|
|
|
|
|
&:before {
|
2023-01-09 21:02:46 +00:00
|
|
|
background: var(--accentedBg);
|
2021-12-16 17:14:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2023-01-09 21:02:46 +00:00
|
|
|
|
2023-12-22 11:41:42 +00:00
|
|
|
.item_content {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100vw;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 8px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item_content_text {
|
|
|
|
max-width: calc(100vw - 4rem);
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2023-08-01 06:32:03 +00:00
|
|
|
.switch {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
user-select: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.switchDisabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.switchButton {
|
|
|
|
margin-left: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.switchText {
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-top: 2px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.switchInput {
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
opacity: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2023-01-09 21:02:46 +00:00
|
|
|
.icon {
|
2023-01-25 10:49:17 +00:00
|
|
|
margin-right: 8px;
|
2023-12-22 11:41:42 +00:00
|
|
|
line-height: 1;
|
2023-01-09 21:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.caret {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
margin-right: 5px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indicator {
|
2023-12-22 11:41:42 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-01-09 21:02:46 +00:00
|
|
|
color: var(--indicator);
|
|
|
|
font-size: 12px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.divider {
|
|
|
|
margin: 8px 0;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
</style>
|