Feat(settings): add renderer for settings configuration #142

Merged
jakob.scheid merged 88 commits from feature/settings-renderer into main 2026-07-28 20:14:50 +02:00
2 changed files with 21 additions and 21 deletions
Showing only changes of commit 4b6881808d - Show all commits
+2 -21
View File
@@ -66,7 +66,7 @@ watch(selected, (newValue, oldValue) => {
{{ t(props.setting.i18n) }} {{ t(props.setting.i18n) }}
<ul class="options-list"> <ul class="options-list">
<li v-for="option in props.setting.options" :key="option.name"> <li v-for="option in props.setting.options" :key="option.name">
<label class="option"> <label class="settings-button">
<input <input
:type="optionType" :type="optionType"
:name="props.path" :name="props.path"
@@ -84,6 +84,7 @@ watch(selected, (newValue, oldValue) => {
</div> </div>
</template> </template>
<style scoped src="./SettingsButton.css"></style>
<style scoped> <style scoped>
.options-list { .options-list {
list-style: none; list-style: none;
@@ -92,26 +93,6 @@ watch(selected, (newValue, oldValue) => {
margin-top: 0.5em; margin-top: 0.5em;
} }
.option {
--padding-x: 0.7em;
padding: 0.3em var(--padding-x);
margin-top: 0.2em;
width: calc(100% - 2 * var(--padding-x));
border-radius: 0.8em;
display: inline-flex;
align-items: center;
gap: 0.5em;
cursor: pointer;
background-color: var(--light-bg);
user-select: none;
-moz-user-select: none;
}
.option:hover {
background-color: var(--light-hover);
}
.option-input { .option-input {
appearance: none; appearance: none;
display: none; display: none;
@@ -0,0 +1,19 @@
.settings-button {
--padding-x: 0.7em;
padding: 0.3em var(--padding-x);
margin-top: 0.2em;
width: calc(100% - 2 * var(--padding-x));
border-radius: 0.8em;
display: inline-flex;
align-items: center;
gap: 0.5em;
cursor: pointer;
background-color: var(--light-bg);
user-select: none;
-moz-user-select: none;
}
.settings-button:hover {
background-color: var(--light-hover);
}