summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-15 07:58:27 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-15 07:58:27 +0900
commitbddff17e5e22104a799d0147301570239a895fbc (patch)
tree4ea8a507adb275b6a29890fe8502c8e0ce6759e2 /src
parentwip (diff)
downloadsharkey-bddff17e5e22104a799d0147301570239a895fbc.tar.gz
sharkey-bddff17e5e22104a799d0147301570239a895fbc.tar.bz2
sharkey-bddff17e5e22104a799d0147301570239a895fbc.zip
wip
Diffstat (limited to 'src')
-rw-r--r--src/client/app/mobile/views/pages/settings.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue
index 2a32e982ba..1c5a43ede4 100644
--- a/src/client/app/mobile/views/pages/settings.vue
+++ b/src/client/app/mobile/views/pages/settings.vue
@@ -14,14 +14,14 @@
<ui-switch v-model="$store.state.settings.circleIcons" @change="onChangeCircleIcons">%i18n:@circle-icons%</ui-switch>
<div>
- <div class="md-body-2">%i18n:@timeline%</div>
+ <div>%i18n:@timeline%</div>
<ui-switch v-model="$store.state.settings.showReplyTarget" @change="onChangeShowReplyTarget">%i18n:@show-reply-target%</ui-switch>
<ui-switch v-model="$store.state.settings.showMyRenotes" @change="onChangeShowMyRenotes">%i18n:@show-my-renotes%</ui-switch>
<ui-switch v-model="$store.state.settings.showRenotedMyNotes" @change="onChangeShowRenotedMyNotes">%i18n:@show-renoted-my-notes%</ui-switch>
</div>
<div>
- <div class="md-body-2">%i18n:@post-style%</div>
+ <div>%i18n:@post-style%</div>
<ui-radio v-model="postStyle" value="standard">%i18n:@post-style-standard%</ui-radio>
<ui-radio v-model="postStyle" value="smart">%i18n:@post-style-smart%</ui-radio>
</div>
@@ -48,7 +48,7 @@
<option v-for="x in langs" :value="x[0]" :key="x[0]">{{ x[1] }}</option>
</optgroup>
</ui-select>
- <span class="md-helper-text">%fa:info-circle% %i18n:@lang-tip%</span>
+ <span>%fa:info-circle% %i18n:@lang-tip%</span>
</ui-card>
<ui-card>
@@ -69,7 +69,7 @@
<template v-if="latestVersion !== undefined">
<div>%i18n:@latest-version% <i>{{ latestVersion ? latestVersion : version }}</i></div>
</template>
- <ui-button class="md-raised md-primary" @click="checkForUpdate" :disabled="checkingForUpdate">
+ <ui-button @click="checkForUpdate" :disabled="checkingForUpdate">
<template v-if="checkingForUpdate">%i18n:@update-checking%<mk-ellipsis/></template>
<template v-else>%i18n:@check-for-updates%</template>
</ui-button>