]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/plugins/shared/plugin-list.component.scss
Merge branch 'release/3.1.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / plugins / shared / plugin-list.component.scss
CommitLineData
6702a1b2
C
1@import '_variables';
2@import '_mixins';
3
df9a1a13
C
4.plugin {
5 margin: 15px 0;
e66883b3 6 background-color: pvar(--submenuColor);
df9a1a13
C
7}
8
6702a1b2 9.first-row {
03efb141
RK
10 display: flex;
11 align-items: center;
6702a1b2
C
12 margin-bottom: 10px;
13
14 .plugin-name {
15 font-size: 16px;
16 margin-right: 10px;
17 font-weight: $font-semibold;
18 }
19
20 .plugin-version {
21 opacity: 0.6;
22 }
03efb141
RK
23
24 .plugin-icon {
25 margin-left: 10px;
c123027f 26
03efb141 27 my-global-icon {
e66883b3 28 @include apply-svg-color(pvar(--greyForegroundColor));
c123027f 29
03efb141 30 &[iconName="npm"] {
e66883b3 31 @include fill-svg-color(pvar(--greyForegroundColor));
03efb141
RK
32 }
33 }
34 }
35
36 .buttons {
37 margin-left: auto;
38 width: max-content;
39 > *:not(:last-child) {
40 margin-right: 10px;
41 }
42 }
6702a1b2
C
43}
44
45.second-row {
2dbbf860
RK
46 display: grid;
47 grid-template-columns: 1fr auto;
6702a1b2
C
48 align-items: center;
49 justify-content: space-between;
50
51 .description {
52 opacity: 0.8
53 }
6702a1b2
C
54}
55
56.action-button {
57 @include peertube-button-link;
58 @include button-with-icon(21px, 0, -2px);
59}