diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-13 11:54:12 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-13 11:54:12 +0900 |
| commit | a473768bef8e846a40ce64e5b9be1660b566a679 (patch) | |
| tree | 582481d5bbd208cc95fa4fe6f7bf6d8fe97bc8b2 /src/client/components | |
| parent | i18n (diff) | |
| download | sharkey-a473768bef8e846a40ce64e5b9be1660b566a679.tar.gz sharkey-a473768bef8e846a40ce64e5b9be1660b566a679.tar.bz2 sharkey-a473768bef8e846a40ce64e5b9be1660b566a679.zip | |
:art:
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/error.vue | 4 | ||||
| -rw-r--r-- | src/client/components/notes.vue | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/client/components/error.vue b/src/client/components/error.vue index 02ebb55f02..76dcbbcb67 100644 --- a/src/client/components/error.vue +++ b/src/client/components/error.vue @@ -1,6 +1,6 @@ <template> <div class="mjndxjcg _panel"> - <img src="https://xn--931a.moe/assets/error.png" alt=""/> + <img src="https://xn--931a.moe/assets/error.png" alt="" class="_ghost"/> <p><fa :icon="faExclamationTriangle"/> {{ $t('error') }}</p> <mk-button @click="() => $emit('retry')" class="button">{{ $t('retry') }}</mk-button> </div> @@ -45,8 +45,6 @@ export default Vue.extend({ height: 150px; margin-bottom: 16px; border-radius: 16px; - pointer-events: none; - user-select: none; } } </style> diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index 284957a46b..be8f68e3a6 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -1,7 +1,7 @@ <template> <div class="mk-notes" v-size="[{ max: 500 }]"> <div class="empty" v-if="empty"> - <img src="https://xn--931a.moe/assets/info.png" alt=""/> + <img src="https://xn--931a.moe/assets/info.png" alt="" class="_ghost"/> <div>{{ $t('noNotes') }}</div> </div> @@ -88,8 +88,6 @@ export default Vue.extend({ height: 128px; margin-bottom: 16px; border-radius: 16px; - pointer-events: none; - user-select: none; } } |