Skip to content

Commit

Permalink
Merge pull request #3706 from nextcloud/fix/hack-navigation-scroll
Browse files Browse the repository at this point in the history
Fix size of creation box in navigation
  • Loading branch information
dartcafe committed Sep 12, 2024
2 parents 2133c92 + d5ee3e8 commit 5b41c1b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
38 changes: 25 additions & 13 deletions src/js/assets/scss/hacks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,28 @@
// 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
.mx-input {
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;
Expand All @@ -32,21 +42,23 @@
}

// 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 {
margin-right: 20px !important;
}

// 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;
Expand Down

0 comments on commit 5b41c1b

Please sign in to comment.