summaryrefslogtreecommitdiff
path: root/src/client/components/instance-ticker.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-11-13 12:23:49 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-11-13 12:23:49 +0900
commit2795fe457909c687f668d020ef65d52abc3182fb (patch)
tree0a52e4e4d854333496fcc487560c93c3de5d5eb5 /src/client/components/instance-ticker.vue
parentMerge branch 'develop' (diff)
parent12.96.0 (diff)
downloadmisskey-2795fe457909c687f668d020ef65d52abc3182fb.tar.gz
misskey-2795fe457909c687f668d020ef65d52abc3182fb.tar.bz2
misskey-2795fe457909c687f668d020ef65d52abc3182fb.zip
Merge branch 'develop'
Diffstat (limited to 'src/client/components/instance-ticker.vue')
-rw-r--r--src/client/components/instance-ticker.vue62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/client/components/instance-ticker.vue b/src/client/components/instance-ticker.vue
deleted file mode 100644
index 5674174558..0000000000
--- a/src/client/components/instance-ticker.vue
+++ /dev/null
@@ -1,62 +0,0 @@
-<template>
-<div class="hpaizdrt" :style="bg">
- <img v-if="info.faviconUrl" class="icon" :src="info.faviconUrl"/>
- <span class="name">{{ info.name }}</span>
-</div>
-</template>
-
-<script lang="ts">
-import { defineComponent } from 'vue';
-import { instanceName } from '@client/config';
-
-export default defineComponent({
- props: {
- instance: {
- type: Object,
- required: false
- },
- },
-
- data() {
- return {
- info: this.instance || {
- faviconUrl: '/favicon.ico',
- name: instanceName,
- themeColor: (document.querySelector('meta[name="theme-color-orig"]') as HTMLMetaElement)?.content
- }
- }
- },
-
- computed: {
- bg(): any {
- const themeColor = this.info.themeColor || '#777777';
- return {
- background: `linear-gradient(90deg, ${themeColor}, ${themeColor + '00'})`
- };
- }
- }
-});
-</script>
-
-<style lang="scss" scoped>
-.hpaizdrt {
- $height: 1.1rem;
-
- height: $height;
- border-radius: 4px 0 0 4px;
- overflow: hidden;
- color: #fff;
-
- > .icon {
- height: 100%;
- }
-
- > .name {
- margin-left: 4px;
- line-height: $height;
- font-size: 0.9em;
- vertical-align: top;
- font-weight: bold;
- }
-}
-</style>