From 40beced622d76d4ed339718eb790a8e0f13e57a3 Mon Sep 17 00:00:00 2001 From: Murtaza Sultani Date: Wed, 16 Jul 2025 14:42:41 +0200 Subject: =?UTF-8?q?Resolve=20"Dynamische=20Links-/Rechts-Positionierung=20?= =?UTF-8?q?f=C3=BCr=20Dropdown-Komponente"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #5735 Merge request studip/studip!4363 --- resources/assets/stylesheets/scss/forum.scss | 12 +++++++++++ resources/vue/components/Dropdown.vue | 31 +++++++++++++++++++++++----- 2 files changed, 38 insertions(+), 5 deletions(-) diff --git a/resources/assets/stylesheets/scss/forum.scss b/resources/assets/stylesheets/scss/forum.scss index fad29a0..5eb0ca7 100644 --- a/resources/assets/stylesheets/scss/forum.scss +++ b/resources/assets/stylesheets/scss/forum.scss @@ -1700,6 +1700,18 @@ $card-max-width: 300px; .forum-form { padding: 5px ; } + + .post-reactions { + position: unset; + &__container { + transform: unset; + left: 0; + } + } + + .post-reactions-container { + position: relative; + } } } diff --git a/resources/vue/components/Dropdown.vue b/resources/vue/components/Dropdown.vue index 338e23f..02980ee 100644 --- a/resources/vue/components/Dropdown.vue +++ b/resources/vue/components/Dropdown.vue @@ -1,5 +1,5 @@