]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-videos/my-account-videos.component.scss
Add video channel view
[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;
457bb213 26 @include button-with-icon(21px);
dc595ab7 27
457bb213
C
28 my-global-icon {
29 @include apply-svg-color(#fff);
30 }
ce0e281d
C
31 }
32 }
33}
34
d2cc03aa 35.video {
22a16e36 36 @include row-blocks;
a2b817d3 37
ce0e281d
C
38 &:first-child {
39 margin-top: 47px;
40 }
41
a8981e0b
C
42 .checkbox-container {
43 display: flex;
44 align-items: center;
45 margin-right: 20px;
46 margin-left: 12px;
47 }
48
d2cc03aa
C
49 my-video-thumbnail {
50 margin-right: 10px;
51 }
52
53 .video-info {
54 flex-grow: 1;
55
56 .video-info-name {
b2731bff
C
57 @include disable-default-a-behaviour;
58
9a0fc840 59 color: var(--mainForegroundColor);
b2731bff 60 display: block;
bbe0f064 61 width: fit-content;
d2cc03aa
C
62 font-size: 16px;
63 font-weight: $font-semibold;
64 }
65
191764f3 66 .video-info-date-views,
bce47964 67 .video-info-privacy,
191764f3 68 .video-info-blacklisted {
d2cc03aa 69 font-size: 13px;
2243730c 70
bce47964 71 &.video-info-privacy,
191764f3 72 &.video-info-blacklisted .blacklisted-label {
2243730c
C
73 font-weight: $font-semibold;
74 }
191764f3
C
75
76 &.video-info-blacklisted {
77 color: red;
78
79 .blacklisted-reason {
80 &::before {
81 content: ' - ';
82 }
83 }
84 }
d2cc03aa
C
85 }
86 }
b2731bff
C
87
88 .video-buttons {
89 min-width: 190px;
74d63469
GR
90
91 *:not(:last-child) {
92 margin-right: 10px;
93 }
b2731bff 94 }
d2cc03aa 95}
9b7d1c72 96
80bfd33c 97@media screen and (max-width: $small-view) {
9b7d1c72
C
98 .video {
99 flex-direction: column;
100 height: auto;
101 text-align: center;
102
f2bbd1e1
C
103 .video-info-name {
104 margin: auto;
105 }
106
9b7d1c72
C
107 input[type=checkbox] {
108 display: none;
109 }
110
111 my-video-thumbnail {
112 margin-right: 0;
113 }
114
115 .video-buttons {
116 margin-top: 10px;
117 }
118 }
119}