]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-video-miniature/video-download.component.scss
Add video filters to common video pages
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / video-download.component.scss
1 @use '_variables' as *;
2 @use '_mixins' as *;
3
4 .nav-content {
5 margin-top: 30px;
6 }
7
8 .advanced-filters-button {
9 display: flex;
10 justify-content: center;
11 align-items: center;
12 margin-top: 20px;
13 font-size: 16px;
14 font-weight: 600;
15 cursor: pointer;
16
17 .nav-tabs {
18 margin-top: 10x;
19 }
20
21 .glyphicon {
22 @include margin-right(5px);
23 }
24 }
25
26 .peertube-select-container.title-select {
27 @include peertube-select-container(auto);
28
29 display: inline-block;
30 margin-left: 10px;
31 vertical-align: top;
32 }
33
34 #dropdown-download-type {
35 cursor: pointer;
36 }
37
38 .download-type {
39 margin-top: 20px;
40
41 .peertube-radio-container {
42 @include margin-right(30px);
43
44 display: inline-block;
45 }
46 }
47
48 .nav-metadata {
49 margin-top: 20px;
50 }
51
52 .file-metadata {
53 padding: 1rem;
54 }
55
56 .file-metadata .metadata-attribute {
57 font-size: 13px;
58 display: block;
59 margin-bottom: 12px;
60
61 .metadata-attribute-label {
62 @include padding-right(5px);
63
64 min-width: 142px;
65 display: inline-block;
66 color: pvar(--greyForegroundColor);
67 font-weight: $font-bold;
68 }
69
70 a.metadata-attribute-value {
71 @include disable-default-a-behaviour;
72
73 color: pvar(--mainForegroundColor);
74
75 &:hover {
76 opacity: 0.9;
77 }
78 }
79
80 &.metadata-attribute-tags {
81 .metadata-attribute-value:not(:nth-child(2)) {
82 &::before {
83 content: ', ';
84 }
85 }
86 }
87 }