Merge branch 'release/v1.3.0' into develop
[oweals/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 }