blob: a2939d5210ea48e9a708fad8c3949152f2e8094f (
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
|
@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($column-responsive: false);
&:first-child {
margin-top: 47px;
}
.checkbox-container {
display: flex;
align-items: center;
margin-right: 20px;
margin-left: 12px;
}
my-video-miniature {
flex-grow: 1;
}
}
@include on-small-main-col {
.video {
flex-wrap: wrap;
}
}
@include on-mobile-main-col {
.checkbox-container {
display: none;
}
.action-selection-mode {
display: none; // disable for small screens
}
}
|