aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-miniature/video-download.component.scss
blob: 7f6e03c87f1f13be9398ecb03641315e9af6a9b5 (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
89
90
91
92
@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 {
    margin-right: 5px;
  }
}

.peertube-select-container {
  @include peertube-select-container(85px);

  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;

  select {
    height: inherit;
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem;
  }
}

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

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

  .peertube-radio-container {
    @include peertube-radio-container;

    display: inline-block;
    margin-right: 30px;
  }
}

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

.file-metadata {
  padding: 1rem;
}

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

  .metadata-attribute-label {
    min-width: 142px;
    padding-right: 5px;
    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: ', '
      }
    }
  }
}