diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-15 07:03:46 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-15 07:03:46 +0900 |
| commit | 2c2cd893b89c275921e51cc820e6f36d7f15691a (patch) | |
| tree | d78585d8e6a9d968e665bc16dcc2c4a9f0f31a3f /src/client/app/admin | |
| parent | 10.51.1 (diff) | |
| download | misskey-2c2cd893b89c275921e51cc820e6f36d7f15691a.tar.gz misskey-2c2cd893b89c275921e51cc820e6f36d7f15691a.tar.bz2 misskey-2c2cd893b89c275921e51cc820e6f36d7f15691a.zip | |
:art:
Diffstat (limited to 'src/client/app/admin')
| -rw-r--r-- | src/client/app/admin/views/index.vue | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/client/app/admin/views/index.vue b/src/client/app/admin/views/index.vue index bc2629c488..a97148ac1e 100644 --- a/src/client/app/admin/views/index.vue +++ b/src/client/app/admin/views/index.vue @@ -37,8 +37,10 @@ </div> </nav> <main> - <marquee-text v-if="instances.length > 0" class="instances" :repeat="10" :duration="20"> - <span v-for="instance in instances" class="instance"><b :style="{ background: instance.bg }">{{ instance.host }}</b>{{ instance.notesCount | number }}</span> + <marquee-text v-if="instances.length > 0" class="instances" :repeat="10" :duration="30"> + <span v-for="instance in instances" class="instance"> + <b :style="{ background: instance.bg }">{{ instance.host }}</b>{{ instance.notesCount | number }} / {{ instance.usersCount | number }} + </span> </marquee-text> <div class="page"> <div v-if="page == 'dashboard'"><x-dashboard/></div> @@ -286,10 +288,10 @@ export default Vue.extend({ padding 0 0 0 250px > .instances - padding 8px - background rgba(0, 0, 0, 0.7) + padding 10px + background #000 color #fff - font-size 14px + font-size 13px >>> .instance margin 0 10px |