]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/buttons/button.component.scss
Fix icon color on audio upload
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / button.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .action-button {
5 @include peertube-button-link;
6 @include button-with-icon(21px, 0, -2px);
7
8 // FIXME: Firefox does not apply global .orange-button icon color
9 &.orange-button {
10 @include apply-svg-color(#fff)
11 }
12 }
13
14 // In a table, try to minimize the space taken by this button
15 @media screen and (max-width: 1400px) {
16 :host-context(td) {
17 .action-button {
18 padding: 0 13px;
19 }
20
21 .button-label {
22 display: none;
23 }
24 }
25 }