1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00
Peertube/client/src/app/shared/buttons/button.component.scss
2019-07-24 10:58:16 +02:00

31 lines
590 B
SCSS

@import '_variables';
@import '_mixins';
my-small-loader /deep/ .root {
display: inline-block;
margin: 0 3px 0 0;
width: 20px;
}
.action-button {
@include peertube-button-link;
@include button-with-icon(21px, 0, -2px);
// FIXME: Firefox does not apply global .orange-button icon color
&.orange-button {
@include apply-svg-color(#fff)
}
}
// In a table, try to minimize the space taken by this button
@media screen and (max-width: 1400px) {
:host-context(td) {
.action-button {
padding: 0 13px;
}
.button-label {
display: none;
}
}
}