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-06-04 19:14:41 +0300
committerdartcafe <github@dartcafe.de>2021-06-04 19:14:41 +0300
commitde1945c38258636f8d2c8ef5fa384c2c972c1777 (patch)
tree2a1fa506f79f655333e22bff44f46b6032f2e8fa /src
parent1bcbfbbd8c73f2551dd6528058b3ae049cacb4e7 (diff)
fix position of option owner in sidebar and respect draggable
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src')
-rw-r--r--src/js/components/Options/OptionsText.vue14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/js/components/Options/OptionsText.vue b/src/js/components/Options/OptionsText.vue
index fb9ef5b2..65698855 100644
--- a/src/js/components/Options/OptionsText.vue
+++ b/src/js/components/Options/OptionsText.vue
@@ -131,6 +131,20 @@ export default {
</script>
<style lang="scss" scoped>
+ .owner {
+ display: flex;
+ position: relative;
+ left: -16px;
+ width: 0;
+ &:hover {
+ display: none;
+ }
+ }
+
+ .draggable:hover .owner {
+ display: none;
+ }
+
.option-item {
border-bottom: 1px solid var(--color-border);
&:active,