Merge pull request #31210 from nextcloud/backport/31179/stable22

This commit is contained in:
Pytal 2022-02-16 11:45:27 -08:00 committed by GitHub
commit 579e3a904a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 17 additions and 8 deletions

View file

@ -1028,8 +1028,13 @@ span.version {
}
.counter {
padding-left: $header-height - 10px;
margin: 10px;
padding-left: $header-height;
padding-top: 10px;
width: 100%;
background-color: var(--color-main-background);
position: fixed;
z-index: 1;
height: $header-height;
}
&.installed {
@ -1037,6 +1042,7 @@ span.version {
display: table;
width: 100%;
height: auto;
margin-top: $header-height;
}
margin-bottom: 100px;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -33,6 +33,9 @@
{{ t('settings', 'Update all') }}
</button>
</div>
<div v-if="!showUpdateAll" class="counter">
{{ t('settings', 'All apps are up-to-date.') }}
</div>
<transition-group name="app-list" tag="div" class="apps-list-container">
<AppItem v-for="app in apps"
:key="app.id"