Skip to content

Commit

Permalink
fix overlapping buttons in apps-management
Browse files Browse the repository at this point in the history
Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
  • Loading branch information
szaimen committed Feb 15, 2022
1 parent b9a56ee commit 70c8117
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
10 changes: 8 additions & 2 deletions apps/settings/css/settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1034,15 +1034,21 @@ 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 {
.apps-list-container {
display: table;
width: 100%;
height: auto;
margin-top: $header-height;
}

margin-bottom: 100px;
Expand Down
4 changes: 2 additions & 2 deletions apps/settings/js/vue-settings-apps-users-management.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/settings/js/vue-settings-apps-users-management.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apps/settings/js/vue-settings-apps.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/settings/js/vue-settings-apps.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions apps/settings/src/components/AppList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 70c8117

Please sign in to comment.