1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-04-16 04:15:42 +02:00

Fix display issue in NC26+ ()

Signed-off-by: ManuelSailer <github.com@manuel-sailer.de>
This commit is contained in:
ManuelSailer 2023-04-12 18:46:21 +02:00 committed by Benjamin Brahmer
parent 4a1d94ace0
commit bf0ffd7921
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1
# Unreleased
## [21.x.x]
- Fix display issue in NC26+ (#2192)
### Changed
### Fixed

View File

@ -236,7 +236,7 @@
min-height: 43px;
}
#app-content.nc-major-version-25 .compact .utils {
#app-content.nc-major-version-gte-25 .compact .utils {
top: 0px;
}

View File

@ -70,7 +70,7 @@ foreach (Plugin::getScripts() as $appName => $fileName) {
</div>
<div id="app-content"
class="nc-major-version-<?= \OCP\Util::getVersion()[0]; ?>"
class="nc-major-version-<?= \OCP\Util::getVersion()[0]; ?><?= \OCP\Util::getVersion()[0] >= 25 ? ' nc-major-version-gte-25' : ''; ?>"
data-nc-major-version="<?= \OCP\Util::getVersion()[0]; ?>"
ng-class="{
'loading-content': App.loading.isLoading('content') &&