aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/my-videos/my-videos.component.scss
blob: aaf21126b429c41241aec50ff10c6620b2ad7ca5 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@import '_variables';
@import '_mixins';

input[type=text] {
  @include peertube-input-text(300px);
}

.peertube-select-container {
  @include peertube-select-container(auto);
  margin-left: 0.5rem;
}

h1 {
  display: flex;
  justify-content: space-between;

  .button-link {
    @include peertube-button-link;
    @include grey-button;
    @include button-with-icon(18px, 3px, -1px);

    &:not(:last-child) {
      margin-right: 10px;
    }
  }
}

.action-button-delete-selection {
  display: inline-block;

  @include peertube-button;
  @include orange-button;
  @include button-with-icon(21px);

  my-global-icon {
    @include apply-svg-color(#fff);
  }
}

.action-button {
  display: flex;
  margin-left: 10px;
  align-self: flex-end;
}

my-edit-button {
  margin-right: 10px;
}

@include on-small-main-col {
  h1 {
    flex-direction: column;

    > span,
    .button-link {
      margin-bottom: 10px;
    }
  }

  .action-button {
    margin-top: 10px;
    margin-left: auto;
  }
}

@include on-mobile-main-col {
  .videos-header {
    flex-direction: column;

    input[type=text] {
      width: 100%;
      margin-bottom: 12px;
    }
    .peertube-select-container {
      margin-left: 0;
    }
  }

  .action-button {
    margin-left: 0;
  }
}