aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-miniature/video-download.component.scss
blob: f0303457167fa70ef5898f4801fceeb3a4f7663e (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
83
84
85
86
87
88
@import 'variables';
@import 'mixins';

.nav-content {
  margin-top: 30px;
}

.advanced-filters-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

  .nav-tabs {
    margin-top: 10x;
  }

  .glyphicon {
    @include margin-right(5px);
  }
}

.peertube-select-container.title-select {
  @include peertube-select-container(auto);

  display: inline-block;
  margin-left: 10px;
  vertical-align: top;
}

#dropdown-download-type {
  cursor: pointer;
}

.download-type {
  margin-top: 20px;

  .peertube-radio-container {
    @include peertube-radio-container;
    @include margin-right(30px);

    display: inline-block;
  }
}

.nav-metadata {
  margin-top: 20px;
}

.file-metadata {
  padding: 1rem;
}

.file-metadata .metadata-attribute {
  font-size: 13px;
  display: block;
  margin-bottom: 12px;

  .metadata-attribute-label {
    @include padding-right(5px);

    min-width: 142px;
    display: inline-block;
    color: pvar(--greyForegroundColor);
    font-weight: $font-bold;
  }

  a.metadata-attribute-value {
    @include disable-default-a-behaviour;

    color: pvar(--mainForegroundColor);

    &:hover {
      opacity: 0.9;
    }
  }

  &.metadata-attribute-tags {
    .metadata-attribute-value:not(:nth-child(2)) {
      &::before {
        content: ', ';
      }
    }
  }
}