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