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

43 lines
1.2 KiB
Vue
Raw Normal View History

2017-02-16 22:25:29 +01:00
<template>
<div class="settings panel panel-default base00-background">
<div class="panel-heading base01-background base04">
Settings
</div>
<div class="panel-body">
<div class="setting-item">
<h2>Theme</h2>
<style-switcher></style-switcher>
</div>
2017-02-23 00:04:47 +01:00
<div class="setting-item">
<h2>Attachments</h2>
<ul class="setting-list">
<li>
<input type="checkbox" id="hideAttachments" v-model="hideAttachmentsLocal">
2017-03-05 14:34:14 +01:00
<label for="hideAttachments">Hide attachments in timeline</label>
</li>
<li>
<input type="checkbox" id="hideAttachmentsInConv" v-model="hideAttachmentsInConvLocal">
<label for="hideAttachmentsInConv">Hide attachments in conversations</label>
</li>
<li>
<input type="checkbox" id="hideNsfw" v-model="hideNsfwLocal">
<label for="hideNsfw">Enable clickthrough NSFW attachment hiding</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>
.setting-item {
2017-02-18 08:48:35 +01:00
margin: 1em 1em 1.4em;
2017-02-16 22:25:29 +01:00
}
.setting-list {
list-style-type: none;
}
2017-02-16 22:25:29 +01:00
</style>