aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/buttons/button.component.scss
blob: f73b7b8087ad903809fd02ce00edbafd243e0594 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@import '_variables';
@import '_mixins';

:host {
  outline: none;
}

my-small-loader ::ng-deep .root {
  display: inline-block;
  margin: 0 3px 0 0;
  width: 20px;
}

a[class$=-button],
span[class$=-button] {
  > span {
    margin-left: 5px;
  }
}

.action-button {
  @include peertube-button-link;
  @include button-with-icon(21px, 0, -1px);
}

.orange-button {
  @include peertube-button;
  @include orange-button;
}

.orange-button-link {
  @include peertube-button-link;
  @include orange-button;
}

.grey-button {
  @include peertube-button;
  @include grey-button;
}

.grey-button-link {
  @include peertube-button-link;
  @include grey-button;
}

// 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;
    }
  }
}