]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account-videos/my-account-videos.component.scss
9cd985273f062f4e71d0ac25425fc0d4b3396a64
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-videos / my-account-videos.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .action-selection-mode {
5 width: 174px;
6 display: flex;
7 justify-content: flex-end;
8
9 .action-selection-mode-child {
10 position: fixed;
11
12 .action-button {
13 display: inline-block;
14 }
15
16 .action-button-cancel-selection {
17 @include peertube-button;
18 @include grey-button;
19
20 margin-right: 10px;
21 }
22
23 .action-button-delete-selection {
24 @include peertube-button;
25 @include orange-button;
26 }
27
28 .icon.icon-delete-white {
29 @include icon(21px);
30
31 position: relative;
32 top: -2px;
33 background-image: url('../../../assets/images/global/delete-white.svg');
34 }
35 }
36 }
37
38 /deep/ .action-button {
39 &.action-button-delete {
40 margin-right: 10px;
41 }
42 }
43
44 .video {
45 display: flex;
46 min-height: 130px;
47 padding-bottom: 20px;
48 margin-bottom: 20px;
49 border-bottom: 1px solid #C6C6C6;
50
51 &:first-child {
52 margin-top: 47px;
53 }
54
55 my-video-thumbnail {
56 margin-right: 10px;
57 }
58
59 .video-info {
60 flex-grow: 1;
61
62 .video-info-name {
63 @include disable-default-a-behaviour;
64
65 color: #000;
66 display: block;
67 width: fit-content;
68 font-size: 16px;
69 font-weight: $font-semibold;
70 }
71
72 .video-info-date-views, .video-info-private {
73 font-size: 13px;
74
75 &.video-info-private {
76 font-weight: $font-semibold;
77 }
78 }
79 }
80
81 .video-buttons {
82 min-width: 190px;
83 }
84 }
85
86 @media screen and (max-width: 800px) {
87 .video {
88 flex-direction: column;
89 height: auto;
90 text-align: center;
91
92 .video-info-name {
93 margin: auto;
94 }
95
96 input[type=checkbox] {
97 display: none;
98 }
99
100 my-video-thumbnail {
101 margin-right: 0;
102 }
103
104 .video-buttons {
105 margin-top: 10px;
106 }
107 }
108 }