stylesheets improvements

This commit is contained in:
Jörn-Michael Miehe 2023-09-09 21:41:06 +00:00
parent 3153f57613
commit 5ca3112619
5 changed files with 4 additions and 24 deletions

View file

@ -22,5 +22,3 @@ export default class extends Vue {
public icon?: string; public icon?: string;
} }
</script> </script>
<style scoped></style>

View file

@ -2,7 +2,7 @@
<MultiModal ref="multi_modal" /> <MultiModal ref="multi_modal" />
<section> <section>
<figure class="image"> <figure class="image is-unselectable">
<img :src="$advent22.api_url('general/background')" /> <img :src="$advent22.api_url('general/background')" />
<ThouCanvas> <ThouCanvas>
<CalendarDoor <CalendarDoor
@ -57,9 +57,3 @@ export default class extends Vue {
} }
} }
</script> </script>
<style lang="scss" scoped>
section > figure {
user-select: none;
}
</style>

View file

@ -44,7 +44,7 @@ export default class extends Vue {
} }
</script> </script>
<style lang="scss" scoped> <style scoped>
rect { rect {
cursor: pointer; cursor: pointer;
} }

View file

@ -10,7 +10,7 @@
<li>[Entf]: Tag entfernen</li> <li>[Entf]: Tag entfernen</li>
</ul> </ul>
</div> </div>
<figure class="image"> <figure class="image is-unselectable">
<img :src="$advent22.api_url('general/background')" /> <img :src="$advent22.api_url('general/background')" />
<ThouCanvas> <ThouCanvas>
<PreviewDoor <PreviewDoor
@ -48,9 +48,3 @@ export default class extends Vue {
} }
} }
</script> </script>
<style lang="scss" scoped>
section > figure {
user-select: none;
}
</style>

View file

@ -8,7 +8,7 @@
<li>Doppel- oder Mittelklick: Türchen löschen</li> <li>Doppel- oder Mittelklick: Türchen löschen</li>
</ul> </ul>
</div> </div>
<figure class="image"> <figure class="image is-unselectable">
<img :src="$advent22.api_url('general/background')" /> <img :src="$advent22.api_url('general/background')" />
<RectangleCanvas <RectangleCanvas
:rectangles="rectangles" :rectangles="rectangles"
@ -76,9 +76,3 @@ export default class extends Vue {
} }
} }
</script> </script>
<style lang="scss" scoped>
section > figure {
user-select: none;
}
</style>