Skip to content

Commit b1c4e64

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 2260f1e commit b1c4e64

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
@@ -1034,15 +1034,21 @@ span.version {
10341034
}
10351035

10361036
.counter {
1037-
padding-left: $header-height - 10px;
1038-
margin: 10px;
1037+
padding-left: $header-height;
1038+
padding-top: 10px;
1039+
width: 100%;
1040+
background-color: var(--color-main-background);
1041+
position: fixed;
1042+
z-index: 1;
1043+
height: $header-height;
10391044
}
10401045

10411046
&.installed {
10421047
.apps-list-container {
10431048
display: table;
10441049
width: 100%;
10451050
height: auto;
1051+
margin-top: $header-height;
10461052
}
10471053

10481054
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)