]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-video-miniature/videos-selection.component.scss
Fix multiline ellipsis
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / videos-selection.component.scss
CommitLineData
693263e9
C
1@import '_variables';
2@import '_mixins';
3
4.action-selection-mode {
5 display: flex;
6 justify-content: flex-end;
7 flex-grow: 1;
8
9 .action-selection-mode-child {
10 position: fixed;
11
12 .action-button {
cd801c69 13 display: block;
14 margin-left: 55px;
693263e9
C
15 }
16
17 .action-button-cancel-selection {
18 @include peertube-button;
19 @include grey-button;
693263e9
C
20 }
21 }
22}
23
24.video {
25 @include row-blocks;
26
27 &:first-child {
28 margin-top: 47px;
29 }
30
31 .checkbox-container {
32 display: flex;
33 align-items: center;
34 margin-right: 20px;
35 margin-left: 12px;
36 }
37
38 my-video-miniature {
39 flex-grow: 1;
40 }
41}
42
43@media screen and (max-width: $small-view) {
44 .video {
45 flex-direction: column;
46 height: auto;
47
48 .checkbox-container {
49 display: none;
50 }
51
52 my-button {
53 margin-top: 10px;
54 }
55 }
cd801c69 56
57 .action-selection-mode {
58 display: none; // disable for small screens
59 }
693263e9 60}