Skip to content

Commit 37d2190

Browse files
szaimennextcloud-command
authored andcommitted
fix overlapping buttons in apps-management
Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 parent 4cd26d4 commit 37d2190

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

apps/settings/css/settings.scss

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,15 +1028,21 @@ span.version {
10281028
}
10291029

10301030
.counter {
1031-
padding-left: $header-height - 10px;
1032-
margin: 10px;
1031+
padding-left: $header-height;
1032+
padding-top: 10px;
1033+
width: 100%;
1034+
background-color: var(--color-main-background);
1035+
position: fixed;
1036+
z-index: 1;
1037+
height: $header-height;
10331038
}
10341039

10351040
&.installed {
10361041
.apps-list-container {
10371042
display: table;
10381043
width: 100%;
10391044
height: auto;
1045+
margin-top: $header-height;
10401046
}
10411047

10421048
margin-bottom: 100px;

apps/settings/js/vue-settings-apps-users-management.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/settings/js/vue-settings-apps-users-management.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/settings/js/vue-settings-apps.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/settings/js/vue-settings-apps.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/settings/src/components/AppList.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
{{ t('settings', 'Update all') }}
3434
</button>
3535
</div>
36+
<div v-if="!showUpdateAll" class="counter">
37+
{{ t('settings', 'All apps are up-to-date.') }}
38+
</div>
3639
<transition-group name="app-list" tag="div" class="apps-list-container">
3740
<AppItem v-for="app in apps"
3841
:key="app.id"

0 commit comments

Comments
 (0)