diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-02-14 06:21:02 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-02-14 06:21:02 +0000 |
| commit | 321e94bc3d6a392d8b14fa24b6252dc236cf4496 (patch) | |
| tree | dde7cdf8782d294e4fae0f106f057a337d821317 | |
| parent | 728cbaf982882773f8f49c632164c76dc1cd96ae (diff) | |
remove bogus div from blubber dialog panel and adjust styling of edit buttons and text, fixes #4990
Closes #4990
Merge request studip/studip!3932
| -rw-r--r-- | resources/assets/stylesheets/scss/talk-bubble.scss | 10 | ||||
| -rw-r--r-- | resources/vue/components/blubber/DialogPanel.vue | 6 |
2 files changed, 6 insertions, 10 deletions
diff --git a/resources/assets/stylesheets/scss/talk-bubble.scss b/resources/assets/stylesheets/scss/talk-bubble.scss index 2da274d..77dee84 100644 --- a/resources/assets/stylesheets/scss/talk-bubble.scss +++ b/resources/assets/stylesheets/scss/talk-bubble.scss @@ -76,15 +76,12 @@ $ownColor: var(--petrol-40); } button { - width: 24px; - height: 24px; + width: 25px; + height: 25px; border: solid thin var(--base-color); background-color: var(--white); cursor: pointer; - - img { - vertical-align: middle; - } + padding: 2px; } } @@ -103,6 +100,7 @@ $ownColor: var(--petrol-40); text-align: right; font-size: 0.8em; margin-bottom: -0.5em; + vertical-align: text-bottom; } } diff --git a/resources/vue/components/blubber/DialogPanel.vue b/resources/vue/components/blubber/DialogPanel.vue index 3afcddf..2a6455a 100644 --- a/resources/vue/components/blubber/DialogPanel.vue +++ b/resources/vue/components/blubber/DialogPanel.vue @@ -1,7 +1,5 @@ <template> - <div> - <BlubberPanel :threadId="threadId" :search="search" v-if="threadId" /> - </div> + <BlubberPanel :threadId="threadId" :search="search" v-if="threadId" /> </template> <script> @@ -30,7 +28,7 @@ export default { }, }, beforeMount() { - this.onSelectThread(this.initialThreadId, false); + this.onSelectThread(this.initialThreadId); }, }; </script> |
