]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video-playlist/video-playlist-element-miniature.component.scss
add aria-hidden to non-descriptive icons (#2844)
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video-playlist / video-playlist-element-miniature.component.scss
CommitLineData
e2f01c47
C
1@import '_variables';
2@import '_mixins';
3@import '_miniature';
4
bfbd9128
C
5$thumbnail-width: 130px;
6$thumbnail-height: 72px;
7
72675ebe 8my-video-thumbnail {
bfbd9128
C
9 @include thumbnail-size-component($thumbnail-width, $thumbnail-height);
10}
72675ebe 11
bfbd9128
C
12.fake-thumbnail {
13 width: $thumbnail-width;
14 height: $thumbnail-height;
15 background-color: #ececec;
16}
17
18my-video-thumbnail,
19.fake-thumbnail {
72675ebe
C
20 display: flex; // Avoids an issue with line-height that adds space below the element
21 margin-right: 10px;
22}
23
e2f01c47
C
24.video {
25 display: flex;
26 align-items: center;
27 background-color: var(--mainBackgroundColor);
28 padding: 10px;
29 border-bottom: 1px solid $separator-border-color;
30
31 &:hover {
32 background-color: rgba(0, 0, 0, 0.05);
33
34 .more {
3143ae17 35 opacity: 1;
e2f01c47
C
36 }
37 }
38
70afd522 39 @media not all and (hover: hover) and (pointer: fine) {
40 .more {
41 opacity: 1 !important;
42 }
43 }
44
e2f01c47
C
45 &.playing {
46 background-color: rgba(0, 0, 0, 0.02);
47 }
48
49 a {
50 @include disable-default-a-behaviour;
51
bfbd9128 52 color: var(--mainForegroundColor);
e2f01c47 53 display: flex;
3143ae17 54 min-width: 0;
e2f01c47
C
55 align-items: center;
56 cursor: pointer;
e2f01c47
C
57
58 .position {
59 font-weight: $font-semibold;
60 margin-right: 10px;
c123027f 61 color: var(--greyForegroundColor);
bce47964 62 min-width: 25px;
e2f01c47
C
63
64 my-global-icon {
c123027f 65 @include apply-svg-color(var(--greyForegroundColor));
e2f01c47
C
66
67 width: 17px;
68 position: relative;
69 left: -2px;
70 }
71 }
72
e2f01c47
C
73 .video-info {
74 display: flex;
75 flex-direction: column;
3143ae17 76 align-self: flex-start;
e2f01c47
C
77 min-width: 0;
78
79 a {
bce47964 80 width: auto;
e2f01c47
C
81 }
82
e2f01c47 83 .video-info-account, .video-info-timestamp {
c123027f 84 color: var(--greyForegroundColor);
e2f01c47
C
85 }
86 }
87 }
88
bfbd9128
C
89 .video-info-name {
90 font-size: 18px;
91 font-weight: $font-semibold;
92 display: inline-block;
93
94 @include ellipsis;
95 }
96
bedf0e60 97 .more, my-edit-button {
e2f01c47
C
98 justify-self: flex-end;
99 margin-left: auto;
100 cursor: pointer;
c5407d70 101 min-width: 24px;
bedf0e60 102 }
103
104 .more {
105 opacity: 0;
e2f01c47
C
106
107 &.show {
3143ae17 108 opacity: 1;
e2f01c47
C
109 }
110
111 .icon-more {
c123027f 112 @include apply-svg-color(var(--greyForegroundColor));
e2f01c47
C
113
114 display: flex;
115
116 &::after {
117 border: none;
118 }
119 }
120
121 .dropdown-item {
122 @include dropdown-with-icon-item;
123 }
124
125 .timestamp-options {
126 padding-top: 0;
127 padding-left: 35px;
128 margin-bottom: 15px;
129
130 > div {
131 display: flex;
132 align-items: center;
133 }
134
135 input {
136 @include peertube-button;
137 @include orange-button;
138
139 margin-top: 10px;
140 }
141 }
142 }
143}
bedf0e60 144
145@mixin more-dropdown-control {
146 .video {
147 my-edit-button {
148 display: none;
149
150 + .more {
151 display: inline-flex;
152 }
153 }
154 }
155}
156
157@mixin edit-button-control {
158 .video {
159 my-edit-button {
160 display: none;
161 }
162
163 &.playing {
164 my-edit-button {
165 display: inline-flex;
166 height: max-content;
167 }
168 }
169
170 my-edit-button + .more {
171 display: none;
172 }
173 }
174}
175
176@mixin edit-button-in-mobile-view {
177 .video {
178 my-edit-button {
179 ::ng-deep .action-button-edit {
180 padding: 0 13px;
181
182 .button-label {
183 display: none;
184 }
185 }
186 }
187 }
188}
189
190@media screen and (min-width: $small-view) {
191 :host-context(.expanded) {
192 @include more-dropdown-control();
193 }
194}
195
196@media screen and (max-width: $small-view) {
197 :host-context(.expanded) {
198 @include edit-button-control();
199 }
200}
201
202@media screen and (max-width: $mobile-view) {
203 :host-context(.expanded) {
204 @include edit-button-in-mobile-view();
205 }
206}
207
208@media screen and (min-width: #{$small-view + $menu-width}) {
209 :host-context(.main-col:not(.expanded)) {
210 @include more-dropdown-control();
211 }
212}
213
214@media screen and (max-width: #{$small-view + $menu-width}) {
215 :host-context(.main-col:not(.expanded)) {
216 @include edit-button-control();
217 }
218}
219
220@media screen and (max-width: #{$mobile-view + $menu-width}) {
221 :host-context(.main-col:not(.expanded)) {
222 @include edit-button-in-mobile-view();
223 }
224}