mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-05-11 13:34:06 +02:00
Fix display issue in NC26+ (#2192)
Signed-off-by: ManuelSailer <github.com@manuel-sailer.de>
This commit is contained in:
parent
4a1d94ace0
commit
bf0ffd7921
@ -4,6 +4,7 @@ The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1
|
|||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
## [21.x.x]
|
## [21.x.x]
|
||||||
|
- Fix display issue in NC26+ (#2192)
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -236,7 +236,7 @@
|
|||||||
min-height: 43px;
|
min-height: 43px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#app-content.nc-major-version-25 .compact .utils {
|
#app-content.nc-major-version-gte-25 .compact .utils {
|
||||||
top: 0px;
|
top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ foreach (Plugin::getScripts() as $appName => $fileName) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="app-content"
|
<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]; ?>"
|
data-nc-major-version="<?= \OCP\Util::getVersion()[0]; ?>"
|
||||||
ng-class="{
|
ng-class="{
|
||||||
'loading-content': App.loading.isLoading('content') &&
|
'loading-content': App.loading.isLoading('content') &&
|
||||||
|
Loading…
Reference in New Issue
Block a user