Skip to content

Commit

Permalink
Merge pull request #40871 from nextcloud/enh/36965/fix-my-apps-view
Browse files Browse the repository at this point in the history
  • Loading branch information
szaimen committed Oct 12, 2023
2 parents dd0142f + 8f66fbe commit 01d5979
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 16 deletions.
2 changes: 1 addition & 1 deletion apps/settings/css/settings.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/settings/css/settings.css.map

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

18 changes: 17 additions & 1 deletion apps/settings/css/settings.scss
Expand Up @@ -2,7 +2,8 @@
This file is licensed under the Affero General Public License version 3 or later.
See the COPYING-README file. */
@use 'variables';
@import 'functions';
@use 'sass:math';
@import 'functions';

input {
&#openid, &#webdav {
Expand Down Expand Up @@ -914,6 +915,7 @@ span.version {
display: table;
width: 100%;
height: auto;
white-space: normal;
}

margin-bottom: 100px;
Expand All @@ -933,6 +935,13 @@ span.version {
box-sizing: border-box;
}

> .actions {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: end;
}

&.selected {
background-color: var(--color-background-dark);
}
Expand Down Expand Up @@ -1061,6 +1070,13 @@ span.version {
}
}

// Display buttons above each other on mobile
@media (max-width: math.div(1024px, 2)) {
.apps-list.installed .section > .actions {
display: table-cell;
}
}

#apps-list-search {
.section {
h2 {
Expand Down
8 changes: 1 addition & 7 deletions apps/settings/src/components/AppList/AppItem.vue
Expand Up @@ -209,14 +209,8 @@ export default {
}
</script>

<style scoped>
<style scoped lang="scss">
.app-icon {
filter: var(--background-invert-if-bright);
}
.actions {
display: flex !important;
gap: 8px;
flex-wrap: wrap;
justify-content: end;
}
</style>
4 changes: 2 additions & 2 deletions dist/settings-apps-view-7418.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/settings-apps-view-7418.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

0 comments on commit 01d5979

Please sign in to comment.