aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2025-02-14 06:21:02 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2025-02-14 06:21:02 +0000
commit321e94bc3d6a392d8b14fa24b6252dc236cf4496 (patch)
treedde7cdf8782d294e4fae0f106f057a337d821317
parent728cbaf982882773f8f49c632164c76dc1cd96ae (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.scss10
-rw-r--r--resources/vue/components/blubber/DialogPanel.vue6
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>