]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/buttons/button.component.scss
Fix avatar size in moderation tables
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / buttons / button.component.scss
CommitLineData
63c4db6d
C
1@import '_variables';
2@import '_mixins';
3
30814423
K
4:host {
5 outline: none;
6}
7
03652b31 8my-small-loader ::ng-deep .root {
b5f919ac
C
9 display: inline-block;
10 margin: 0 3px 0 0;
11 width: 20px;
12}
13
292c17b8 14a[class$=-button],
2b587cad
RK
15span[class$=-button] {
16 > span {
17 margin-left: 5px;
18 }
19}
20
cd83ea1b
C
21.action-button {
22 @include peertube-button-link;
1fe1e14c 23 @include button-with-icon(21px, 0, -1px);
14aa8556 24}
61875048 25
14aa8556
C
26.orange-button {
27 @include peertube-button;
28 @include orange-button;
29}
30
31.orange-button-link {
32 @include peertube-button-link;
33 @include orange-button;
34}
35
36.grey-button {
37 @include peertube-button;
38 @include grey-button;
39}
40
41.grey-button-link {
42 @include peertube-button-link;
43 @include grey-button;
cd83ea1b 44}
b17e8d89
C
45
46// In a table, try to minimize the space taken by this button
47@media screen and (max-width: 1400px) {
48 :host-context(td) {
49 .action-button {
50 padding: 0 13px;
51 }
52
53 .button-label {
54 display: none;
55 }
56 }
57}