pleroma-fe/src/components/settings/settings.vue

94 lines
2.7 KiB
Vue
Raw Normal View History

2017-02-16 22:25:29 +01:00
<template>
<div class="settings panel panel-default">
<div class="panel-heading">
2017-11-07 15:14:37 +01:00
{{$t('settings.settings')}}
2017-02-16 22:25:29 +01:00
</div>
<div class="panel-body">
<div class="setting-item">
2017-11-07 15:14:37 +01:00
<h2>{{$t('settings.theme')}}</h2>
2017-02-16 22:25:29 +01:00
<style-switcher></style-switcher>
</div>
<div class="setting-item">
2017-11-07 15:14:37 +01:00
<h2>{{$t('settings.filtering')}}</h2>
<p>{{$t('settings.filtering_explanation')}}</p>
<textarea id="muteWords" v-model="muteWordsString"></textarea>
</div>
2017-02-23 00:04:47 +01:00
<div class="setting-item">
2017-11-07 15:14:37 +01:00
<h2>{{$t('settings.attachments')}}</h2>
<ul class="setting-list">
<li>
<input type="checkbox" id="hideAttachments" v-model="hideAttachmentsLocal">
2017-11-07 15:14:37 +01:00
<label for="hideAttachments">{{$t('settings.hide_attachments_in_tl')}}</label>
</li>
<li>
<input type="checkbox" id="hideAttachmentsInConv" v-model="hideAttachmentsInConvLocal">
2017-11-07 15:14:37 +01:00
<label for="hideAttachmentsInConv">{{$t('settings.hide_attachments_in_convo')}}</label>
</li>
<li>
<input type="checkbox" id="hideNsfw" v-model="hideNsfwLocal">
2017-11-07 15:14:37 +01:00
<label for="hideNsfw">{{$t('settings.nsfw_clickthrough')}}</label>
</li>
<li>
<input type="checkbox" id="autoload" v-model="autoloadlocal">
<label for="autoload">{{$t('settings.autoload')}}</label>
</li>
<li>
<input type="checkbox" id="streaming" v-model="streamingLocal">
<label for="streaming">{{$t('settings.streaming')}}</label>
</li>
<li>
<input type="checkbox" id="hoverPreview" v-model="hoverPreviewLocal">
2017-11-07 15:14:37 +01:00
<label for="hoverPreview">{{$t('settings.reply_link_preview')}}</label>
</li>
<li>
<input type="checkbox" id="stopGifs" v-model="stopGifs">
<label for="stopGifs">{{$t('settings.stop_gifs')}}</label>
</li>
</ul>
2017-02-23 00:04:47 +01:00
</div>
2017-02-16 22:25:29 +01:00
</div>
</div>
</template>
<script src="./settings.js">
</script>
<style lang="scss">
@import '../../_variables.scss';
.setting-item {
2018-04-07 18:30:27 +02:00
margin: 1em 1em 1.4em;
2018-04-07 18:30:27 +02:00
textarea {
width: 100%;
height: 100px;
}
2018-04-07 18:30:27 +02:00
.old-avatar {
width: 128px;
border-radius: $fallback--avatarRadius;
border-radius: var(--avatarRadius, $fallback--avatarRadius);
}
2018-04-07 18:30:27 +02:00
.new-avatar {
object-fit: cover;
width: 128px;
height: 128px;
border-radius: $fallback--avatarRadius;
border-radius: var(--avatarRadius, $fallback--avatarRadius);
}
2018-04-07 18:30:27 +02:00
.btn {
margin-top: 1em;
min-height: 28px;
width: 10em;
}
}
.setting-list {
2018-04-07 18:30:27 +02:00
list-style-type: none;
li {
margin-bottom: 0.5em;
}
}
2017-02-16 22:25:29 +01:00
</style>