]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-videos/my-account-videos.component.scss
Fix notification tests
[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 }
7ccddd7b 85
d2cc03aa
C
86 }
87 }
b2731bff
C
88
89 .video-buttons {
90 min-width: 190px;
74d63469
GR
91
92 *:not(:last-child) {
93 margin-right: 10px;
94 }
b2731bff 95 }
d2cc03aa 96}
9b7d1c72 97
80bfd33c 98@media screen and (max-width: $small-view) {
9b7d1c72
C
99 .video {
100 flex-direction: column;
101 height: auto;
102 text-align: center;
103
f2bbd1e1
C
104 .video-info-name {
105 margin: auto;
106 }
107
9b7d1c72
C
108 input[type=checkbox] {
109 display: none;
110 }
111
112 my-video-thumbnail {
113 margin-right: 0;
114 }
115
116 .video-buttons {
117 margin-top: 10px;
118 }
119 }
120}