From d5ee3e869f9a27db0261adbc13fcdd22175027c1 Mon Sep 17 00:00:00 2001 From: dartcafe Date: Thu, 12 Sep 2024 22:51:35 +0200 Subject: [PATCH] fixes #3704 and tidy Signed-off-by: dartcafe --- CHANGELOG.md | 4 ++++ src/js/assets/scss/hacks.scss | 38 +++++++++++++++++++++++------------ 2 files changed, 29 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e95c57bb2..07ee46e65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ --> # Changelog ## +## [7.2.3] - 2024-09-12 +### Fix + - fix size of creation box in navigation + ## [7.2.2] - 2024-09-06 ### Fix - fix watcher in situations it may fail on pollId 0 diff --git a/src/js/assets/scss/hacks.scss b/src/js/assets/scss/hacks.scss index 12b38699e..83c19cf3c 100644 --- a/src/js/assets/scss/hacks.scss +++ b/src/js/assets/scss/hacks.scss @@ -5,8 +5,17 @@ // some hacks, do alter the display of third parity components // raltive position to be able to get sticky toolbar -.app-content { - position: relative !important; +// Eliminated in Polls 7.2.3 +// .app-content { +// position: relative !important; +// } + +// prevents scrolling of the navigation default slot +// Added in POlls 7.2.3 +// https://github.com/nextcloud/polls/issues/3704 +// https://github.com/nextcloud-libraries/nextcloud-vue/issues/6079 +.app-navigation__body { + flex: 1 0 auto; } // fill full input with background color @@ -14,9 +23,10 @@ background-clip: initial !important; } -.app-sidebar { - top: 0 !important; -} +// Eliminated in Polls 7.2.3 +// .app-sidebar { +// top: 0 !important; +// } .action-item.action-item--single.app-navigation-toggle.undefined.has-tooltip { top: 4px; @@ -32,9 +42,10 @@ } // force scrolling of sidebar-tabs content -.app-sidebar-tabs { - overflow-y: hidden; -} +// Eliminated in Polls 7.2.3 +// .app-sidebar-tabs { +// overflow-y: hidden; +// } .user-item > .checkbox-radio-switch-switch, .user-item.add-public > .icon-add { @@ -42,11 +53,12 @@ } // fix v-popover sizing -.poll-header-buttons { - .trigger { - display: inline !important; - } -} +// Eliminated in Polls 7.2.3 +// .poll-header-buttons { +// .trigger { +// display: inline !important; +// } +// } .modal-wrapper .modal-container { overflow: scroll !important;