diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index f2de7fce380bb..e05f3f5c14488 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -539,20 +539,6 @@ span.usersLastLoginTooltip { } /* APPS */ -#app-content > svg.app-filter { - float: left; - height: 0; - width: 0; -} - -#app-category-app-bundles { - margin-bottom: 20px; -} - -.appinfo { - margin: 1em 40px; -} - #app-navigation { /* Navigation icons */ img { @@ -570,24 +556,6 @@ span.usersLastLoginTooltip { display: block; } } - - .appwarning { - background: #fcc; - } - - &.appwarning:hover { - background: #fbb; - } - - .app-external { - color: var(--color-text-maxcontrast); - } -} - -span.version { - margin-left: 1em; - margin-right: 1em; - color: var(--color-text-maxcontrast); } .app-version { @@ -654,10 +622,6 @@ span.version { opacity: 0.5; } - .app-score-image { - height: 14px; - } - .actions { margin-top: 10px; @@ -796,12 +760,6 @@ span.version { } } -@media only screen and (max-width: 500px) { - .apps-list.installed .app-groups { - display: none !important; - } -} - .section { margin-bottom: 0; /* section divider lines, none needed for last one */ @@ -821,11 +779,6 @@ span.version { } } -.followupsection { - display: block; - padding: 0 30px 30px 30px; -} - .app-image { position: relative; height: 150px; @@ -833,37 +786,6 @@ span.version { overflow: hidden; } -.app-description-toggle-show, .app-description-toggle-hide { - clear: both; - padding: 7px 0; - cursor: pointer; - opacity: .5; -} - -.app-description-container { - clear: both; - position: relative; - top: 7px; -} - -.app-description { - clear: both; -} - -#app-category-1 { - margin-bottom: 18px; -} - -/* capitalize 'Other' category */ - -#app-category-925 { - text-transform: capitalize; -} - -.app-dependencies { - color: #ce3702; -} - .missing-dependencies { list-style: initial; list-style-type: initial; @@ -934,14 +856,6 @@ span.version { } - .groups-enable { - margin-top: 0; - - label { - margin-right: 3px; - } - } - .app-image { width: 44px; height: auto; @@ -982,78 +896,14 @@ span.version { flex-wrap: wrap; align-content: flex-start; - &.hidden { - display: none; - } - .section { position: relative; flex: 0 0 auto; - h2.app-name { - display: block; - margin: 8px 0; - } - &:hover { background-color: var(--color-background-dark); } } - - .app-description { - p { - margin: 10px 0; - } - - ul { - list-style: disc; - } - - ol { - list-style: decimal; - - ol, ul { - padding-left: 15px; - } - } - - > { - ul, ol { - margin-left: 19px; - } - } - - ul { - ol, ul { - padding-left: 15px; - } - } - } - - /* Bundle header */ - .apps-header { - position: relative; - - div { - display: table-cell; - height: 70px; - } - - h2 { - padding-left: 6px; - padding-top: 15px; - margin-bottom: 12px; - .enable { - position: relative; - top: -1px; - margin-left: 12px; - } - - + .section { - margin-top: 50px; - } - } - } } // Display buttons above each other on mobile diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index 18c4331e0f9fb..0646f041340fa 100644 --- a/apps/settings/src/components/AppList.vue +++ b/apps/settings/src/components/AppList.vue @@ -22,9 +22,14 @@ @@ -197,6 +214,7 @@ export default { // An app level of `200` will be set for apps featured on the app store return apps.filter(app => app.level === 200) } + // filter app store categories return apps.filter(app => { return app.appstore && app.category !== undefined diff --git a/apps/settings/src/components/AppList/AppItem.vue b/apps/settings/src/components/AppList/AppItem.vue index 0838f2c882254..e66507cc5b7d7 100644 --- a/apps/settings/src/components/AppList/AppItem.vue +++ b/apps/settings/src/components/AppList/AppItem.vue @@ -22,8 +22,13 @@