blob: ac3b841da3eb1b623717ef30535739e40690c7ed (
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
|
@use '_mixins' as *;
@use '_variables' as *;
my-input-toggle-hidden {
width: 100%;
}
.title-page.title-page-single {
margin-top: 0;
}
.playlist {
margin-bottom: 50px;
}
.peertube-select-container {
@include peertube-select-container(200px);
}
.qr-code-group {
text-align: center;
}
.nav-content {
margin-top: 30px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.alert {
margin-top: 20px;
}
.filters {
margin-top: 30px;
.advanced-filters.show {
overflow: visible !important;
}
.advanced-filters-button {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
font-size: 16px;
font-weight: $font-semibold;
cursor: pointer;
.glyphicon {
@include margin-right(5px);
}
}
.form-group {
margin-bottom: 0;
height: 34px;
display: flex;
align-items: center;
}
.video-caption-block {
display: flex;
align-items: center;
.peertube-select-container {
@include margin-left(10px);
}
}
.start-at,
.stop-at {
width: 300px;
display: flex;
align-items: center;
my-timestamp-input {
@include margin-left(10px);
}
}
}
.alert-private {
display: flex;
align-items: center;
justify-content: space-between;
}
|