2018-02-20 12:29:52 +01:00
|
|
|
<template>
|
2020-01-31 23:38:40 +01:00
|
|
|
<div class="swhvrteh" @contextmenu.prevent="() => {}">
|
|
|
|
<ol class="users" ref="suggests" v-if="type === 'user'">
|
|
|
|
<li v-for="user in users" @click="complete(type, user)" @keydown="onKeydown" tabindex="-1" class="user">
|
2018-07-24 16:43:14 +02:00
|
|
|
<img class="avatar" :src="user.avatarUrl" alt=""/>
|
2018-12-06 02:02:04 +01:00
|
|
|
<span class="name">
|
2019-03-05 00:24:19 +01:00
|
|
|
<mk-user-name :user="user" :key="user.id"/>
|
2018-12-06 02:02:04 +01:00
|
|
|
</span>
|
2018-04-09 11:52:29 +02:00
|
|
|
<span class="username">@{{ user | acct }}</span>
|
2018-02-20 12:29:52 +01:00
|
|
|
</li>
|
2020-01-31 23:38:40 +01:00
|
|
|
<li @click="chooseUser()" @keydown="onKeydown" tabindex="-1" class="choose">{{ $t('selectUser') }}</li>
|
2018-02-20 12:29:52 +01:00
|
|
|
</ol>
|
2018-07-18 00:19:24 +02:00
|
|
|
<ol class="hashtags" ref="suggests" v-if="hashtags.length > 0">
|
|
|
|
<li v-for="hashtag in hashtags" @click="complete(type, hashtag)" @keydown="onKeydown" tabindex="-1">
|
|
|
|
<span class="name">{{ hashtag }}</span>
|
|
|
|
</li>
|
|
|
|
</ol>
|
2018-02-24 17:55:49 +01:00
|
|
|
<ol class="emojis" ref="suggests" v-if="emojis.length > 0">
|
2018-02-25 09:03:39 +01:00
|
|
|
<li v-for="emoji in emojis" @click="complete(type, emoji.emoji)" @keydown="onKeydown" tabindex="-1">
|
2019-06-16 09:04:27 +02:00
|
|
|
<span class="emoji" v-if="emoji.isCustomEmoji"><img :src="$store.state.device.disableShowingAnimatedImages ? getStaticImageUrl(emoji.url) : emoji.url" :alt="emoji.emoji"/></span>
|
2018-11-05 11:20:35 +01:00
|
|
|
<span class="emoji" v-else-if="!useOsDefaultEmojis"><img :src="emoji.url" :alt="emoji.emoji"/></span>
|
2018-11-01 03:51:49 +01:00
|
|
|
<span class="emoji" v-else>{{ emoji.emoji }}</span>
|
2019-06-10 16:09:36 +02:00
|
|
|
<span class="name" v-html="emoji.name.replace(q, `<b>${q}</b>`)"></span>
|
2018-11-01 13:28:39 +01:00
|
|
|
<span class="alias" v-if="emoji.aliasOf">({{ emoji.aliasOf }})</span>
|
2018-02-24 17:55:49 +01:00
|
|
|
</li>
|
|
|
|
</ol>
|
2018-02-20 12:29:52 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { emojilist } from '../../misc/emojilist';
|
|
|
|
import contains from '../scripts/contains';
|
|
|
|
import { twemojiSvgBase } from '../../misc/twemoji-base';
|
|
|
|
import { getStaticImageUrl } from '../scripts/get-static-image-url';
|
2020-01-31 23:38:40 +01:00
|
|
|
import MkUserSelect from './user-select.vue';
|
2018-02-20 12:29:52 +01:00
|
|
|
|
2018-11-01 13:28:39 +01:00
|
|
|
type EmojiDef = {
|
|
|
|
emoji: string;
|
|
|
|
name: string;
|
|
|
|
aliasOf?: string;
|
|
|
|
url?: string;
|
2018-11-05 11:20:35 +01:00
|
|
|
isCustomEmoji?: boolean;
|
2018-11-01 13:28:39 +01:00
|
|
|
};
|
|
|
|
|
2019-09-21 14:31:38 +02:00
|
|
|
const lib = emojilist.filter(x => x.category !== 'flags');
|
2018-04-09 11:52:29 +02:00
|
|
|
|
2018-11-06 06:09:40 +01:00
|
|
|
const char2file = (char: string) => {
|
2018-12-07 09:21:34 +01:00
|
|
|
let codes = Array.from(char).map(x => x.codePointAt(0).toString(16));
|
2018-11-06 06:09:40 +01:00
|
|
|
if (!codes.includes('200d')) codes = codes.filter(x => x != 'fe0f');
|
2018-12-07 09:21:34 +01:00
|
|
|
codes = codes.filter(x => x && x.length);
|
2018-11-06 06:09:40 +01:00
|
|
|
return codes.join('-');
|
|
|
|
};
|
|
|
|
|
2019-09-21 14:31:38 +02:00
|
|
|
const emjdb: EmojiDef[] = lib.map(x => ({
|
|
|
|
emoji: x.char,
|
|
|
|
name: x.name,
|
2018-11-05 03:19:40 +01:00
|
|
|
aliasOf: null,
|
2019-09-21 14:31:38 +02:00
|
|
|
url: `${twemojiSvgBase}/${char2file(x.char)}.svg`
|
2018-02-25 09:03:39 +01:00
|
|
|
}));
|
2018-04-09 11:52:29 +02:00
|
|
|
|
2019-09-21 14:31:38 +02:00
|
|
|
for (const x of lib) {
|
|
|
|
if (x.keywords) {
|
|
|
|
for (const k of x.keywords) {
|
2018-02-25 09:03:39 +01:00
|
|
|
emjdb.push({
|
2019-09-21 14:31:38 +02:00
|
|
|
emoji: x.char,
|
2018-02-25 09:03:39 +01:00
|
|
|
name: k,
|
2019-09-21 14:31:38 +02:00
|
|
|
aliasOf: x.name,
|
|
|
|
url: `${twemojiSvgBase}/${char2file(x.char)}.svg`
|
2018-02-25 09:03:39 +01:00
|
|
|
});
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-25 09:03:39 +01:00
|
|
|
}
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-04-09 11:52:29 +02:00
|
|
|
|
2018-02-25 09:03:39 +01:00
|
|
|
emjdb.sort((a, b) => a.name.length - b.name.length);
|
|
|
|
|
2018-02-20 12:29:52 +01:00
|
|
|
export default Vue.extend({
|
2020-01-31 23:38:40 +01:00
|
|
|
props: {
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
q: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
textarea: {
|
|
|
|
type: HTMLTextAreaElement,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
complete: {
|
|
|
|
type: Function,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
close: {
|
|
|
|
type: Function,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
x: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
y: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
2018-07-18 00:19:24 +02:00
|
|
|
|
2018-02-20 12:29:52 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2019-06-16 09:04:27 +02:00
|
|
|
getStaticImageUrl,
|
2018-02-20 12:29:52 +01:00
|
|
|
fetching: true,
|
|
|
|
users: [],
|
2018-07-18 00:19:24 +02:00
|
|
|
hashtags: [],
|
2018-02-24 17:55:49 +01:00
|
|
|
emojis: [],
|
|
|
|
select: -1,
|
2019-09-21 14:31:38 +02:00
|
|
|
emojilist,
|
2018-11-01 13:28:39 +01:00
|
|
|
emojiDb: [] as EmojiDef[]
|
2018-02-24 17:55:49 +01:00
|
|
|
}
|
|
|
|
},
|
2018-07-18 00:19:24 +02:00
|
|
|
|
2018-02-24 17:55:49 +01:00
|
|
|
computed: {
|
|
|
|
items(): HTMLCollection {
|
|
|
|
return (this.$refs.suggests as Element).children;
|
2018-11-05 11:20:35 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
useOsDefaultEmojis(): boolean {
|
|
|
|
return this.$store.state.device.useOsDefaultEmojis;
|
2018-02-20 12:29:52 +01:00
|
|
|
}
|
|
|
|
},
|
2018-07-18 00:19:24 +02:00
|
|
|
|
2018-02-24 18:57:19 +01:00
|
|
|
updated() {
|
2020-01-31 23:38:40 +01:00
|
|
|
this.setPosition();
|
2018-02-24 18:57:19 +01:00
|
|
|
},
|
2018-07-18 00:19:24 +02:00
|
|
|
|
2018-02-20 12:29:52 +01:00
|
|
|
mounted() {
|
2020-01-31 23:38:40 +01:00
|
|
|
this.setPosition();
|
|
|
|
|
2018-11-01 13:28:39 +01:00
|
|
|
//#region Construct Emoji DB
|
2018-11-09 00:13:34 +01:00
|
|
|
const customEmojis = (this.$root.getMetaSync() || { emojis: [] }).emojis || [];
|
2018-11-01 13:28:39 +01:00
|
|
|
const emojiDefinitions: EmojiDef[] = [];
|
|
|
|
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const x of customEmojis) {
|
2018-11-01 13:28:39 +01:00
|
|
|
emojiDefinitions.push({
|
|
|
|
name: x.name,
|
|
|
|
emoji: `:${x.name}:`,
|
2018-11-05 11:20:35 +01:00
|
|
|
url: x.url,
|
|
|
|
isCustomEmoji: true
|
2018-11-01 13:28:39 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (x.aliases) {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const alias of x.aliases) {
|
2018-11-01 13:28:39 +01:00
|
|
|
emojiDefinitions.push({
|
|
|
|
name: alias,
|
|
|
|
aliasOf: x.name,
|
|
|
|
emoji: `:${x.name}:`,
|
2018-11-05 11:20:35 +01:00
|
|
|
url: x.url,
|
|
|
|
isCustomEmoji: true
|
2018-11-01 13:28:39 +01:00
|
|
|
});
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-11-01 13:28:39 +01:00
|
|
|
}
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-11-01 13:28:39 +01:00
|
|
|
|
|
|
|
emojiDefinitions.sort((a, b) => a.name.length - b.name.length);
|
|
|
|
|
|
|
|
this.emojiDb = emojiDefinitions.concat(emjdb);
|
|
|
|
//#endregion
|
|
|
|
|
2018-02-20 12:29:52 +01:00
|
|
|
this.textarea.addEventListener('keydown', this.onKeydown);
|
|
|
|
|
2020-01-31 23:38:40 +01:00
|
|
|
for (const el of Array.from(document.querySelectorAll('body *'))) {
|
2018-02-20 12:29:52 +01:00
|
|
|
el.addEventListener('mousedown', this.onMousedown);
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-20 12:29:52 +01:00
|
|
|
|
2018-02-25 10:40:39 +01:00
|
|
|
this.$nextTick(() => {
|
|
|
|
this.exec();
|
2018-02-25 09:38:16 +01:00
|
|
|
|
2018-02-25 10:40:39 +01:00
|
|
|
this.$watch('q', () => {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.exec();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-02-20 12:29:52 +01:00
|
|
|
},
|
2018-07-18 00:19:24 +02:00
|
|
|
|
2018-02-20 12:29:52 +01:00
|
|
|
beforeDestroy() {
|
|
|
|
this.textarea.removeEventListener('keydown', this.onKeydown);
|
|
|
|
|
2020-01-31 23:38:40 +01:00
|
|
|
for (const el of Array.from(document.querySelectorAll('body *'))) {
|
2018-02-20 12:29:52 +01:00
|
|
|
el.removeEventListener('mousedown', this.onMousedown);
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-20 12:29:52 +01:00
|
|
|
},
|
2018-07-18 00:19:24 +02:00
|
|
|
|
2018-02-20 12:29:52 +01:00
|
|
|
methods: {
|
2020-01-31 23:38:40 +01:00
|
|
|
setPosition() {
|
|
|
|
if (this.x + this.$el.offsetWidth > window.innerWidth) {
|
|
|
|
this.$el.style.left = (window.innerWidth - this.$el.offsetWidth) + 'px';
|
|
|
|
} else {
|
|
|
|
this.$el.style.left = this.x + 'px';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.y + this.$el.offsetHeight > window.innerHeight) {
|
|
|
|
this.$el.style.top = (this.y - this.$el.offsetHeight) + 'px';
|
|
|
|
this.$el.style.marginTop = '0';
|
|
|
|
} else {
|
|
|
|
this.$el.style.top = this.y + 'px';
|
|
|
|
this.$el.style.marginTop = 'calc(1em + 8px)';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-25 09:38:16 +01:00
|
|
|
exec() {
|
2018-02-25 10:40:39 +01:00
|
|
|
this.select = -1;
|
|
|
|
if (this.$refs.suggests) {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const el of Array.from(this.items)) {
|
2018-02-25 10:40:39 +01:00
|
|
|
el.removeAttribute('data-selected');
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-25 10:40:39 +01:00
|
|
|
}
|
|
|
|
|
2018-02-25 09:38:16 +01:00
|
|
|
if (this.type == 'user') {
|
2020-01-31 23:38:40 +01:00
|
|
|
if (this.q == null) {
|
|
|
|
this.users = [];
|
|
|
|
this.fetching = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-01 16:12:51 +02:00
|
|
|
const cacheKey = `autocomplete:user:${this.q}`;
|
2018-07-18 00:19:24 +02:00
|
|
|
const cache = sessionStorage.getItem(cacheKey);
|
2018-02-25 09:38:16 +01:00
|
|
|
if (cache) {
|
|
|
|
const users = JSON.parse(cache);
|
|
|
|
this.users = users;
|
|
|
|
this.fetching = false;
|
|
|
|
} else {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('users/search', {
|
2018-02-25 09:38:16 +01:00
|
|
|
query: this.q,
|
2018-12-01 22:44:18 +01:00
|
|
|
limit: 10,
|
|
|
|
detail: false
|
2018-02-25 09:38:16 +01:00
|
|
|
}).then(users => {
|
|
|
|
this.users = users;
|
|
|
|
this.fetching = false;
|
|
|
|
|
|
|
|
// キャッシュ
|
2018-07-18 00:19:24 +02:00
|
|
|
sessionStorage.setItem(cacheKey, JSON.stringify(users));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else if (this.type == 'hashtag') {
|
2018-07-20 20:15:31 +02:00
|
|
|
if (this.q == null || this.q == '') {
|
|
|
|
this.hashtags = JSON.parse(localStorage.getItem('hashtags') || '[]');
|
2018-07-18 00:19:24 +02:00
|
|
|
this.fetching = false;
|
|
|
|
} else {
|
2018-09-01 16:12:51 +02:00
|
|
|
const cacheKey = `autocomplete:hashtag:${this.q}`;
|
2018-07-20 20:15:31 +02:00
|
|
|
const cache = sessionStorage.getItem(cacheKey);
|
|
|
|
if (cache) {
|
|
|
|
const hashtags = JSON.parse(cache);
|
2018-07-18 00:19:24 +02:00
|
|
|
this.hashtags = hashtags;
|
|
|
|
this.fetching = false;
|
2018-07-20 20:15:31 +02:00
|
|
|
} else {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('hashtags/search', {
|
2018-07-20 20:15:31 +02:00
|
|
|
query: this.q,
|
|
|
|
limit: 30
|
|
|
|
}).then(hashtags => {
|
|
|
|
this.hashtags = hashtags;
|
|
|
|
this.fetching = false;
|
|
|
|
|
|
|
|
// キャッシュ
|
|
|
|
sessionStorage.setItem(cacheKey, JSON.stringify(hashtags));
|
|
|
|
});
|
|
|
|
}
|
2018-02-25 09:38:16 +01:00
|
|
|
}
|
|
|
|
} else if (this.type == 'emoji') {
|
2018-11-05 18:05:16 +01:00
|
|
|
if (this.q == null || this.q == '') {
|
2018-11-06 00:02:19 +01:00
|
|
|
this.emojis = this.emojiDb.filter(x => x.isCustomEmoji && !x.aliasOf).sort((a, b) => {
|
|
|
|
var textA = a.name.toUpperCase();
|
|
|
|
var textB = b.name.toUpperCase();
|
|
|
|
return (textA < textB) ? -1 : (textA > textB) ? 1 : 0;
|
|
|
|
});
|
2018-11-05 18:05:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-25 09:38:16 +01:00
|
|
|
const matched = [];
|
2018-11-01 03:51:49 +01:00
|
|
|
const max = 30;
|
|
|
|
|
2018-11-01 13:28:39 +01:00
|
|
|
this.emojiDb.some(x => {
|
|
|
|
if (x.name.startsWith(this.q) && !x.aliasOf && !matched.some(y => y.emoji == x.emoji)) matched.push(x);
|
2018-11-01 03:51:49 +01:00
|
|
|
return matched.length == max;
|
2018-02-25 09:38:16 +01:00
|
|
|
});
|
2018-11-01 03:51:49 +01:00
|
|
|
if (matched.length < max) {
|
2018-11-01 13:28:39 +01:00
|
|
|
this.emojiDb.some(x => {
|
2018-11-01 13:01:47 +01:00
|
|
|
if (x.name.startsWith(this.q) && !matched.some(y => y.emoji == x.emoji)) matched.push(x);
|
2018-11-01 03:51:49 +01:00
|
|
|
return matched.length == max;
|
2018-02-27 06:11:18 +01:00
|
|
|
});
|
|
|
|
}
|
2018-11-01 03:51:49 +01:00
|
|
|
if (matched.length < max) {
|
2018-11-01 13:28:39 +01:00
|
|
|
this.emojiDb.some(x => {
|
2018-11-01 13:01:47 +01:00
|
|
|
if (x.name.includes(this.q) && !matched.some(y => y.emoji == x.emoji)) matched.push(x);
|
2018-11-01 03:51:49 +01:00
|
|
|
return matched.length == max;
|
2018-02-27 06:11:18 +01:00
|
|
|
});
|
|
|
|
}
|
2018-11-01 03:51:49 +01:00
|
|
|
|
2018-02-25 09:38:16 +01:00
|
|
|
this.emojis = matched;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-20 12:29:52 +01:00
|
|
|
onMousedown(e) {
|
|
|
|
if (!contains(this.$el, e.target) && (this.$el != e.target)) this.close();
|
|
|
|
},
|
|
|
|
|
|
|
|
onKeydown(e) {
|
|
|
|
const cancel = () => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (e.which) {
|
|
|
|
case 10: // [ENTER]
|
|
|
|
case 13: // [ENTER]
|
|
|
|
if (this.select !== -1) {
|
|
|
|
cancel();
|
2018-02-24 17:55:49 +01:00
|
|
|
(this.items[this.select] as any).click();
|
2018-02-20 12:29:52 +01:00
|
|
|
} else {
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 27: // [ESC]
|
|
|
|
cancel();
|
|
|
|
this.close();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 38: // [↑]
|
|
|
|
if (this.select !== -1) {
|
|
|
|
cancel();
|
|
|
|
this.selectPrev();
|
|
|
|
} else {
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 9: // [TAB]
|
|
|
|
case 40: // [↓]
|
|
|
|
cancel();
|
|
|
|
this.selectNext();
|
|
|
|
break;
|
2018-02-25 10:40:39 +01:00
|
|
|
|
|
|
|
default:
|
|
|
|
e.stopPropagation();
|
|
|
|
this.textarea.focus();
|
2018-02-20 12:29:52 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
selectNext() {
|
2018-02-24 17:55:49 +01:00
|
|
|
if (++this.select >= this.items.length) this.select = 0;
|
2018-02-20 12:29:52 +01:00
|
|
|
this.applySelect();
|
|
|
|
},
|
|
|
|
|
|
|
|
selectPrev() {
|
2018-02-24 17:55:49 +01:00
|
|
|
if (--this.select < 0) this.select = this.items.length - 1;
|
2018-02-20 12:29:52 +01:00
|
|
|
this.applySelect();
|
|
|
|
},
|
|
|
|
|
|
|
|
applySelect() {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const el of Array.from(this.items)) {
|
2018-02-20 12:29:52 +01:00
|
|
|
el.removeAttribute('data-selected');
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-20 12:29:52 +01:00
|
|
|
|
2018-02-24 17:55:49 +01:00
|
|
|
this.items[this.select].setAttribute('data-selected', 'true');
|
|
|
|
(this.items[this.select] as any).focus();
|
2020-01-31 23:38:40 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
chooseUser() {
|
|
|
|
this.close();
|
|
|
|
const vm = this.$root.new(MkUserSelect, {});
|
|
|
|
vm.$once('selected', user => {
|
|
|
|
this.complete('user', user);
|
|
|
|
});
|
2018-02-20 12:29:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
2020-01-31 23:38:40 +01:00
|
|
|
.swhvrteh {
|
2020-01-29 20:37:25 +01:00
|
|
|
position: fixed;
|
|
|
|
z-index: 65535;
|
|
|
|
max-width: 100%;
|
|
|
|
margin-top: calc(1em + 8px);
|
|
|
|
overflow: hidden;
|
|
|
|
background: var(--panel);
|
|
|
|
border: solid 1px rgba(#000, 0.1);
|
|
|
|
border-radius: 4px;
|
|
|
|
transition: top 0.1s ease, left 0.1s ease;
|
|
|
|
|
|
|
|
> ol {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 4px 0;
|
|
|
|
max-height: 190px;
|
|
|
|
max-width: 500px;
|
|
|
|
overflow: auto;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
> li {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 4px 12px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 0.9em;
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
&, * {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--yrnqrguo);
|
|
|
|
}
|
|
|
|
|
|
|
|
&[data-selected='true'] {
|
|
|
|
background: var(--accent);
|
|
|
|
|
|
|
|
&, * {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: var(--accentDarken);
|
|
|
|
|
|
|
|
&, * {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .users > li {
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
min-width: 28px;
|
|
|
|
min-height: 28px;
|
|
|
|
max-width: 28px;
|
|
|
|
max-height: 28px;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .emojis > li {
|
|
|
|
|
|
|
|
.emoji {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 4px 0 0;
|
|
|
|
width: 24px;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
width: 24px;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.alias {
|
|
|
|
margin: 0 0 0 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-20 12:29:52 +01:00
|
|
|
</style>
|