aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-miniature/videos-selection.component.scss
blob: c33e1188958bee977dc1046c7a776de8a68ef96f (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
@import '_variables';
@import '_mixins';

.action-selection-mode {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;

  .action-selection-mode-child {
    position: fixed;

    .action-button {
      display: block;
      margin-left: 55px;
    }

    .action-button-cancel-selection {
      @include peertube-button;
      @include grey-button;
    }
  }
}

.video {
  @include row-blocks;

  &:first-child {
    margin-top: 47px;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-left: 12px;
  }

  my-video-miniature {
    flex-grow: 1;
  }
}

@media screen and (max-width: $small-view) {
  .video {
    flex-direction: column;
    height: auto;

    .checkbox-container {
      display: none;
    }

    my-button {
      margin-top: 10px;
    }
  }

  .action-selection-mode {
    display: none; // disable for small screens
  }
}