Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-10-04 16:17:18 +0300
committerGitHub <noreply@github.com>2020-10-04 16:17:18 +0300
commita0e1fac6c0f7fc400f173b9a2568a7a52da4c71d (patch)
tree276e68de3bc95f1b36f7263d505a721366287f86 /src
parent7029cd4e2defa2b2c92bb0a09bb7057638503dd6 (diff)
parent135abb229b7f92d3266a41f4950143acaac436ee (diff)
Merge pull request #4264 from nextcloud/bugfix/2946/fix-participants-scrolling-overlap
Fix participants list search box overlap
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/RightSidebar.vue10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/RightSidebar/RightSidebar.vue b/src/components/RightSidebar/RightSidebar.vue
index 7fb5e1463..0b36d5ae2 100644
--- a/src/components/RightSidebar/RightSidebar.vue
+++ b/src/components/RightSidebar/RightSidebar.vue
@@ -258,6 +258,16 @@ export default {
display: flex;
}
+/**
+ * Replace padding with margin to make the participant list scroll
+ * properly behind the top field
+ */
+#tab-participants {
+ margin-top: 10px;
+ padding-top: 0;
+ outline: none; /* remove the weird border that appears on focus */
+}
+
/* Force scroll bars in tabs content instead of in whole sidebar. */
::v-deep .app-sidebar-tabs {
height: calc(100% - 80px);