]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-video-miniature/video-miniature.component.scss
Refactor actor avatar display
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / video-miniature.component.scss
CommitLineData
63c4db6d
C
1@import '_variables';
2@import '_mixins';
830b4faf 3@import '_miniature';
63c4db6d 4
adcf9212 5$more-button-width: 40px;
743f023c 6
0f7407d9
C
7.video-miniature-name {
8 @include miniature-name;
9}
501bc6c2 10
0f7407d9
C
11.video-miniature-information {
12 width: calc(100% - #{$more-button-width});
13}
501bc6c2 14
746018f6 15my-actor-avatar {
0f7407d9 16 margin: 10px 10px 0 0;
f1ac6348 17}
cf78883c 18
0f7407d9
C
19.video-miniature-created-at-views {
20 font-size: 13px;
21}
501bc6c2 22
0f7407d9
C
23.video-miniature-account,
24.video-miniature-channel {
25 @include disable-default-a-behaviour;
26 @include ellipsis;
33253c1a 27
0f7407d9
C
28 display: block;
29 font-size: 13px;
30 color: pvar(--greyForegroundColor);
00a44645 31
0f7407d9
C
32 &:hover {
33 color: $grey-foreground-hover-color;
34 }
35}
adcf9212 36
0f7407d9
C
37.video-info-privacy,
38.video-info-blocked .blocked-label,
39.video-info-nsfw {
40 font-weight: $font-semibold;
41}
03e12d7c 42
0f7407d9
C
43.video-info-blocked {
44 color: red;
03e12d7c 45
0f7407d9
C
46 .blocked-reason::before {
47 content: ' - ';
48 }
49}
0f4905e1 50
0f7407d9
C
51.video-info-nsfw {
52 color: red;
53}
e2409062 54
0f7407d9
C
55.video-actions {
56 width: $more-button-width;
57 height: 30px;
e2409062 58
0f7407d9
C
59 ::ng-deep .dropdown-root:not(.show) {
60 opacity: 0;
61 }
e2409062 62
0f7407d9
C
63 ::ng-deep .playlist-dropdown.show + my-action-dropdown .dropdown-root {
64 opacity: 1;
65 }
e2409062 66
0f7407d9
C
67 ::ng-deep .more-icon {
68 opacity: .6;
3a0fb65c 69
0f7407d9
C
70 &:hover {
71 opacity: 1;
72 }
73 }
74}
3a0fb65c 75
f1ac6348
C
76.video-miniature:hover {
77 ::ng-deep .video-thumbnail-actions-overlay,
78 .video-actions ::ng-deep .dropdown-root {
0f7407d9
C
79 opacity: 1 !important;
80 }
81}
3a0fb65c 82
0f7407d9
C
83// Grid mode
84// Takes all the width on mobile
85.video-miniature:not(.display-as-row) {
86 display: flex;
87 flex-direction: column;
88 padding-bottom: $video-miniature-margin-bottom;
89 width: 100%;
3a0fb65c 90
0f7407d9 91 my-video-thumbnail {
cdeddff1 92 @include block-ratio($selector: '::ng-deep .video-thumbnail');
0f7407d9 93 }
3fbba1d2 94
0f7407d9
C
95 .video-bottom {
96 display: flex;
97 width: 100%;
98 }
3a0fb65c 99
0f7407d9
C
100 .video-miniature-name {
101 margin-top: 10px;
102 margin-bottom: 5px;
103 }
0f4905e1 104
0f7407d9
C
105 .video-miniature-created-at-views {
106 display: block;
3a0fb65c
C
107 }
108
0f7407d9
C
109 .video-actions {
110 margin-top: 3px;
3fbba1d2
RK
111 }
112
0f7407d9 113 @media screen and (max-width: $small-view) {
e66883b3 114 width: 100%;
0f7407d9
C
115 margin-bottom: 25px;
116
117 .video-miniature-information {
118 margin: 0 10px;
119
120 width: 100%;
121 text-align: left;
122 }
e66883b3 123
0f7407d9
C
124 .video-actions {
125 margin: 0;
126 top: -3px;
e66883b3 127
0f7407d9
C
128 ::ng-deep .dropdown-root {
129 opacity: 1 !important;
e66883b3
RK
130 }
131 }
132
0f7407d9
C
133 ::ng-deep .video-thumbnail {
134 border-radius: 0;
e66883b3
RK
135 }
136 }
0f7407d9
C
137}
138
139.video-miniature.display-as-row {
140 --rowThumbnailWidth: #{$video-thumbnail-width};
141 --rowThumbnailHeight: #{$video-thumbnail-height};
142
143 display: flex;
144 flex-direction: row;
e66883b3 145
0f7407d9 146 .video-bottom {
bf64ed41 147 display: flex;
0f7407d9 148 }
e2409062 149
0f7407d9 150 // We don't display avatar in row mode
f1ac6348 151 .channel-avatar {
0f7407d9
C
152 display: none;
153 }
e2409062 154
0f7407d9
C
155 my-video-thumbnail {
156 min-width: var(--rowThumbnailWidth);
157 max-width: var(--rowThumbnailWidth);
158 height: var(--rowThumbnailHeight);
159 margin-right: 10px;
160 }
e2409062 161
0f7407d9 162 .video-miniature-name {
4429a4a6 163 @include ellipsis-multiline($video-miniature-row-name-font-size, 2);
0f7407d9
C
164 }
165
166 .video-miniature-created-at-views,
167 .video-miniature-account,
168 .video-miniature-channel {
4429a4a6 169 font-size: $video-miniature-row-info-font-size;
0f7407d9 170 }
e2409062 171
0f7407d9
C
172 .video-actions {
173 margin-top: -3px;
174 }
175}
e2409062 176
0f7407d9
C
177@include on-small-main-col {
178 .video-miniature.display-as-row {
179 --rowThumbnailWidth: #{$video-thumbnail-medium-width};
180 --rowThumbnailHeight: #{$video-thumbnail-medium-height};
181 }
182}
8dfceec4 183
0f7407d9
C
184@include on-mobile-main-col {
185 .video-miniature.display-as-row {
186 --rowThumbnailWidth: #{$video-thumbnail-small-width};
187 --rowThumbnailHeight: #{$video-thumbnail-small-height};
188
189 .video-miniature-name {
4429a4a6 190 font-size: $video-miniature-row-info-font-size;
0f7407d9
C
191 }
192
193 .video-miniature-created-at-views,
194 .video-miniature-account,
195 .video-miniature-channel {
4429a4a6 196 font-size: $video-miniature-row-mobile-info-font-size;
e2409062 197 }
501bc6c2
C
198 }
199}