Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-05-16 23:36:57 +0300
committerdartcafe <github@dartcafe.de>2021-05-16 23:36:57 +0300
commit9cadb19244a69fadf4506f0da76bf2c4aabd7393 (patch)
tree72a348f8fdf27c878436dae43985ed5dfc2ec847 /src
parentdc13b3a6572d24e879d25e1fa8777d2c6239e559 (diff)
fix #1572
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src')
-rw-r--r--src/js/components/Settings/ExpertimantalSettings.vue10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/js/components/Settings/ExpertimantalSettings.vue b/src/js/components/Settings/ExpertimantalSettings.vue
index e0e15b1d..6fe351eb 100644
--- a/src/js/components/Settings/ExpertimantalSettings.vue
+++ b/src/js/components/Settings/ExpertimantalSettings.vue
@@ -34,9 +34,8 @@
<CheckBoxDiv v-model="useImage" :label="t('polls', 'Use background image')" />
<div class="settings_details">
{{ t('polls', 'Add a background image to the main area.') }}
- <input v-if="useImage" v-model="imageUrl" type="text">
- <div v-if="useImage">
- {{ t('polls', 'Enter the URL of your favorite background image.') }}
+ <div>
+ <input v-if="useImage" v-model="imageUrl" type="text" :placeholder="t('polls', 'Enter the URL of your favorite background image.')">
</div>
</div>
</div>
@@ -126,7 +125,7 @@ export default {
}
</script>
-<style>
+<style lang="scss">
.user_settings {
padding-top: 16px;
}
@@ -134,5 +133,8 @@ export default {
.settings_details {
padding-top: 8px;
margin-left: 26px;
+ input {
+ width: 100%;
+ }
}
</style>