From: Chocobozzz Date: Thu, 29 Apr 2021 07:46:44 +0000 (+0200) Subject: Cleanup plugins admin CSS X-Git-Tag: v3.2.0-rc.1~82 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=faf7eab7d9528451570a26e27093159045346064;hp=f6e98f0a4e812cd7de3227faaa9555c6a03bbd4e;p=github%2FChocobozzz%2FPeerTube.git Cleanup plugins admin CSS --- diff --git a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html index 9cbec03a1..bc4c2ef88 100644 --- a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html +++ b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html @@ -23,13 +23,17 @@
- - - + + - +
diff --git a/client/src/app/+admin/plugins/plugin-search/plugin-search.component.html b/client/src/app/+admin/plugins/plugin-search/plugin-search.component.html index 727633399..6900e8717 100644 --- a/client/src/app/+admin/plugins/plugin-search/plugin-search.component.html +++ b/client/src/app/+admin/plugins/plugin-search/plugin-search.component.html @@ -48,10 +48,15 @@ Installed
- + -
diff --git a/client/src/app/+admin/plugins/plugins.component.scss b/client/src/app/+admin/plugins/plugins.component.scss deleted file mode 100644 index ce9825f53..000000000 --- a/client/src/app/+admin/plugins/plugins.component.scss +++ /dev/null @@ -1,28 +0,0 @@ -@import '_variables'; -@import '_mixins'; - -@media screen and (max-width: $small-view) { - ::ng-deep .plugins .plugin .first-row { - flex-wrap: wrap; - - .plugin-name, - .plugin-version, - .plugin-icon { - margin-bottom: 10px; - } - - .buttons { - my-edit-button, - my-delete-button, - my-button { - .action-button { - padding: 0 13px; - } - - .button-label { - display: none; - } - } - } - } -} diff --git a/client/src/app/+admin/plugins/plugins.component.ts b/client/src/app/+admin/plugins/plugins.component.ts index 6ec6fa4a1..de06c0671 100644 --- a/client/src/app/+admin/plugins/plugins.component.ts +++ b/client/src/app/+admin/plugins/plugins.component.ts @@ -1,8 +1,7 @@ import { Component } from '@angular/core' @Component({ - templateUrl: './plugins.component.html', - styleUrls: [ './plugins.component.scss' ] + templateUrl: './plugins.component.html' }) export class PluginsComponent { } diff --git a/client/src/app/+admin/plugins/shared/plugin-list.component.scss b/client/src/app/+admin/plugins/shared/plugin-list.component.scss index e4ddc9060..47cb1e6e5 100644 --- a/client/src/app/+admin/plugins/shared/plugin-list.component.scss +++ b/client/src/app/+admin/plugins/shared/plugin-list.component.scss @@ -36,6 +36,7 @@ .buttons { margin-left: auto; width: max-content; + > *:not(:last-child) { margin-right: 10px; } @@ -57,3 +58,14 @@ @include peertube-button-link; @include button-with-icon(21px, 0, -2px); } + +@media screen and (max-width: $small-view) { + .first-row { + flex-wrap: wrap; + + .buttons { + flex-basis: 100%; + margin-top: 10px; + } + } +} diff --git a/client/src/app/shared/shared-main/buttons/button.component.scss b/client/src/app/shared/shared-main/buttons/button.component.scss index f73b7b808..09b5f95d7 100644 --- a/client/src/app/shared/shared-main/buttons/button.component.scss +++ b/client/src/app/shared/shared-main/buttons/button.component.scss @@ -1,6 +1,16 @@ @import '_variables'; @import '_mixins'; +@mixin responsive-label { + .action-button { + padding: 0 13px; + } + + .button-label { + display: none; + } +} + :host { outline: none; } @@ -46,12 +56,12 @@ span[class$=-button] { // In a table, try to minimize the space taken by this button @media screen and (max-width: 1400px) { :host-context(td) { - .action-button { - padding: 0 13px; - } + @include responsive-label; + } +} - .button-label { - display: none; - } +@media screen and (max-width: $small-view) { + .responsive-label { + @include responsive-label; } } diff --git a/client/src/app/shared/shared-main/buttons/button.component.ts b/client/src/app/shared/shared-main/buttons/button.component.ts index 1d2be0bf9..ee74b3d12 100644 --- a/client/src/app/shared/shared-main/buttons/button.component.ts +++ b/client/src/app/shared/shared-main/buttons/button.component.ts @@ -3,7 +3,7 @@ import { GlobalIconName } from '@app/shared/shared-icons' @Component({ selector: 'my-button', - styleUrls: ['./button.component.scss'], + styleUrls: [ './button.component.scss' ], templateUrl: './button.component.html' }) @@ -14,6 +14,7 @@ export class ButtonComponent { @Input() title: string = undefined @Input() loading = false @Input() disabled = false + @Input() responsiveLabel = false getTitle () { return this.title || this.label @@ -22,7 +23,8 @@ export class ButtonComponent { getClasses () { return { [this.className]: true, - disabled: this.disabled + disabled: this.disabled, + 'responsive-label': this.responsiveLabel } } } diff --git a/client/src/app/shared/shared-main/buttons/delete-button.component.html b/client/src/app/shared/shared-main/buttons/delete-button.component.html index c94d8d0c9..d7a6702a7 100644 --- a/client/src/app/shared/shared-main/buttons/delete-button.component.html +++ b/client/src/app/shared/shared-main/buttons/delete-button.component.html @@ -1,4 +1,7 @@ - + {{ label }} diff --git a/client/src/app/shared/shared-main/buttons/delete-button.component.ts b/client/src/app/shared/shared-main/buttons/delete-button.component.ts index 18995422a..c091f5309 100644 --- a/client/src/app/shared/shared-main/buttons/delete-button.component.ts +++ b/client/src/app/shared/shared-main/buttons/delete-button.component.ts @@ -9,6 +9,7 @@ import { Component, Input, OnInit } from '@angular/core' export class DeleteButtonComponent implements OnInit { @Input() label: string @Input() title: string + @Input() responsiveLabel = false ngOnInit () { // No label diff --git a/client/src/app/shared/shared-main/buttons/edit-button.component.html b/client/src/app/shared/shared-main/buttons/edit-button.component.html index ecb709be1..8beeee6c4 100644 --- a/client/src/app/shared/shared-main/buttons/edit-button.component.html +++ b/client/src/app/shared/shared-main/buttons/edit-button.component.html @@ -1,4 +1,7 @@ - + {{ label }} diff --git a/client/src/app/shared/shared-main/buttons/edit-button.component.ts b/client/src/app/shared/shared-main/buttons/edit-button.component.ts index 4b76551ca..24c8625ff 100644 --- a/client/src/app/shared/shared-main/buttons/edit-button.component.ts +++ b/client/src/app/shared/shared-main/buttons/edit-button.component.ts @@ -5,11 +5,11 @@ import { Component, Input, OnInit } from '@angular/core' styleUrls: [ './button.component.scss' ], templateUrl: './edit-button.component.html' }) - export class EditButtonComponent implements OnInit { @Input() label: string @Input() title: string @Input() routerLink: string[] | string = [] + @Input() responsiveLabel = false ngOnInit () { // No label