diff options
author | Chocobozzz <me@florianbigard.com> | 2019-03-13 14:18:58 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-03-18 11:17:59 +0100 |
commit | e2f01c47e08d26a30ad47068d195b3d21d0df8a1 (patch) | |
tree | 21f18ed462d313bfb4ba7a1b5221fdb6b2c35bc1 /client/src/sass/include | |
parent | 15e9d5ca39e0b792f61453fbf3885a0fc446afa7 (diff) | |
download | PeerTube-e2f01c47e08d26a30ad47068d195b3d21d0df8a1.tar.gz PeerTube-e2f01c47e08d26a30ad47068d195b3d21d0df8a1.tar.zst PeerTube-e2f01c47e08d26a30ad47068d195b3d21d0df8a1.zip |
Playlist support in watch page
Diffstat (limited to 'client/src/sass/include')
-rw-r--r-- | client/src/sass/include/_miniature.scss | 13 | ||||
-rw-r--r-- | client/src/sass/include/_mixins.scss | 4 |
2 files changed, 12 insertions, 5 deletions
diff --git a/client/src/sass/include/_miniature.scss b/client/src/sass/include/_miniature.scss index 25a024aac..95b759225 100644 --- a/client/src/sass/include/_miniature.scss +++ b/client/src/sass/include/_miniature.scss | |||
@@ -28,15 +28,15 @@ $play-overlay-transition: 0.2s ease; | |||
28 | $play-overlay-height: 26px; | 28 | $play-overlay-height: 26px; |
29 | $play-overlay-width: 18px; | 29 | $play-overlay-width: 18px; |
30 | 30 | ||
31 | @mixin miniature-thumbnail($width: $video-thumbnail-width, $height: $video-thumbnail-height) { | 31 | @mixin miniature-thumbnail { |
32 | @include disable-outline; | 32 | @include disable-outline; |
33 | 33 | ||
34 | display: inline-block; | 34 | display: inline-block; |
35 | position: relative; | 35 | position: relative; |
36 | border-radius: 3px; | 36 | border-radius: 3px; |
37 | overflow: hidden; | 37 | overflow: hidden; |
38 | width: $width; | 38 | width: $video-thumbnail-width; |
39 | height: $height; | 39 | height: $video-thumbnail-height; |
40 | background-color: #ececec; | 40 | background-color: #ececec; |
41 | transition: filter $play-overlay-transition; | 41 | transition: filter $play-overlay-transition; |
42 | 42 | ||
@@ -97,6 +97,13 @@ $play-overlay-width: 18px; | |||
97 | } | 97 | } |
98 | } | 98 | } |
99 | 99 | ||
100 | @mixin thumbnail-size-component ($width, $height) { | ||
101 | /deep/ .video-thumbnail { | ||
102 | width: $width; | ||
103 | height: $height; | ||
104 | } | ||
105 | } | ||
106 | |||
100 | @mixin static-thumbnail-overlay { | 107 | @mixin static-thumbnail-overlay { |
101 | display: inline-block; | 108 | display: inline-block; |
102 | background-color: rgba(0, 0, 0, 0.7); | 109 | background-color: rgba(0, 0, 0, 0.7); |
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 7faeec6bd..9b18f6354 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -63,11 +63,11 @@ | |||
63 | 63 | ||
64 | @mixin apply-svg-color ($color) { | 64 | @mixin apply-svg-color ($color) { |
65 | /deep/ svg { | 65 | /deep/ svg { |
66 | path[fill="#000000"], g[fill="#000000"], rect[fill="#000000"], circle[fill="#000000"] { | 66 | path[fill="#000000"], g[fill="#000000"], rect[fill="#000000"], circle[fill="#000000"], polygon[fill="#000000"] { |
67 | fill: $color; | 67 | fill: $color; |
68 | } | 68 | } |
69 | 69 | ||
70 | path[stroke="#000000"], g[stroke="#000000"], rect[stroke="#000000"], circle[stroke="#000000"] { | 70 | path[stroke="#000000"], g[stroke="#000000"], rect[stroke="#000000"], circle[stroke="#000000"], polygon[stroke="#000000"] { |
71 | stroke: $color; | 71 | stroke: $color; |
72 | } | 72 | } |
73 | } | 73 | } |