aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/plugins/shared
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-03-10 23:42:52 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-03-10 23:48:12 +0100
commit03efb1419d33627939ee9593633fc703b957199d (patch)
tree99836915c70594e9aabe0d8dd28cea3d45826cac /client/src/app/+admin/plugins/shared
parent9b3078581f2767c7aa2ed5766e1a588ebc0cb875 (diff)
downloadPeerTube-03efb1419d33627939ee9593633fc703b957199d.tar.gz
PeerTube-03efb1419d33627939ee9593633fc703b957199d.tar.zst
PeerTube-03efb1419d33627939ee9593633fc703b957199d.zip
Better use of space and icons in plugins administration interface
Diffstat (limited to 'client/src/app/+admin/plugins/shared')
-rw-r--r--client/src/app/+admin/plugins/shared/plugin-list.component.scss29
1 files changed, 22 insertions, 7 deletions
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 87a709b00..3f4fad7b9 100644
--- a/client/src/app/+admin/plugins/shared/plugin-list.component.scss
+++ b/client/src/app/+admin/plugins/shared/plugin-list.component.scss
@@ -7,6 +7,8 @@
7} 7}
8 8
9.first-row { 9.first-row {
10 display: flex;
11 align-items: center;
10 margin-bottom: 10px; 12 margin-bottom: 10px;
11 13
12 .plugin-name { 14 .plugin-name {
@@ -18,6 +20,26 @@
18 .plugin-version { 20 .plugin-version {
19 opacity: 0.6; 21 opacity: 0.6;
20 } 22 }
23
24 .plugin-icon {
25 margin-left: 10px;
26
27 my-global-icon {
28 @include apply-svg-color($grey-foreground-color);
29
30 &[iconName="npm"] {
31 @include fill-svg-color($grey-foreground-color);
32 }
33 }
34 }
35
36 .buttons {
37 margin-left: auto;
38 width: max-content;
39 > *:not(:last-child) {
40 margin-right: 10px;
41 }
42 }
21} 43}
22 44
23.second-row { 45.second-row {
@@ -29,13 +51,6 @@
29 .description { 51 .description {
30 opacity: 0.8 52 opacity: 0.8
31 } 53 }
32
33 .buttons {
34 margin-left: 10px;
35 > *:not(:last-child) {
36 margin-right: 10px;
37 }
38 }
39} 54}
40 55
41.action-button { 56.action-button {