]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/account/account-videos/account-videos.component.scss
Fix deleting a video with comments
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account-videos / account-videos.component.scss
... / ...
CommitLineData
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
49 &:first-child {
50 margin-top: 47px;
51 }
52
53 &:not(:last-child) {
54 margin-bottom: 20px;
55 border-bottom: 1px solid #C6C6C6;
56 }
57
58 .checkbox-container {
59 display: flex;
60 align-items: center;
61 margin-right: 20px;
62 margin-left: 12px;
63
64 input[type=checkbox] {
65 @include peertube-checkbox(2px);
66 }
67 }
68
69 my-video-thumbnail {
70 margin-right: 10px;
71 }
72
73 .video-info {
74 flex-grow: 1;
75
76 .video-info-name {
77 @include disable-default-a-behaviour;
78
79 color: #000;
80 display: block;
81 font-size: 16px;
82 font-weight: $font-semibold;
83 }
84
85 .video-info-date-views {
86 font-size: 13px;
87 }
88 }
89
90 .video-buttons {
91 min-width: 190px;
92 }
93}
94
95@media screen and (max-width: 800px) {
96 .video {
97 flex-direction: column;
98 height: auto;
99 text-align: center;
100
101 input[type=checkbox] {
102 display: none;
103 }
104
105 my-video-thumbnail {
106 margin-right: 0;
107 }
108
109 .video-buttons {
110 margin-top: 10px;
111 }
112 }
113}