]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch-playlist.component.scss
make playlists ignore user history
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch-playlist.component.scss
CommitLineData
72675ebe
C
1@import '_variables';
2@import '_mixins';
3@import '_bootstrap-variables';
4@import '_miniature';
5
6.playlist {
7 min-width: 200px;
8 max-width: 470px;
9 height: 66vh;
10 background-color: var(--mainBackgroundColor);
11 overflow-y: auto;
12 border-bottom: 1px solid $separator-border-color;
13
14 .playlist-info {
15 padding: 5px 30px;
16 background-color: #e4e4e4;
17
18 .playlist-display-name {
19 font-size: 18px;
20 font-weight: $font-semibold;
21 margin-bottom: 5px;
22 }
23
24 .playlist-by-index {
25 color: $grey-foreground-color;
26 display: flex;
27
28 .playlist-by {
29 margin-right: 5px;
30 }
31
32 .playlist-index span:first-child::after {
33 content: '/';
34 margin: 0 3px;
35 }
36 }
bee29df8
RK
37
38 .playlist-controls {
39 display: flex;
40 margin: 10px 0;
41
42 my-global-icon {
43 &:not(.active) {
44 opacity: .5
45 }
46
47 ::ng-deep {
48 cursor: pointer;
49 }
50 }
51 }
72675ebe
C
52 }
53
54 my-video-playlist-element-miniature {
03652b31 55 ::ng-deep {
72675ebe
C
56 .video {
57 .position {
58 margin-right: 0;
59 }
60
61 .video-info {
62 .video-info-name {
63 font-size: 15px;
64 }
65 }
66 }
67
68 my-video-thumbnail {
69 @include thumbnail-size-component(90px, 50px);
70 }
bfbd9128
C
71
72 .fake-thumbnail {
73 width: 90px;
74 height: 50px;
75 }
72675ebe
C
76 }
77 }
78}
79