mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-04-16 04:15:42 +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
|
||||
## [21.x.x]
|
||||
- Fix display issue in NC26+ (#2192)
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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') &&
|
||||
|
Loading…
Reference in New Issue
Block a user