diff options
Diffstat (limited to 'client/src/standalone/videos/embed.scss')
-rw-r--r-- | client/src/standalone/videos/embed.scss | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/client/src/standalone/videos/embed.scss b/client/src/standalone/videos/embed.scss index b76f09677..9140cd37c 100644 --- a/client/src/standalone/videos/embed.scss +++ b/client/src/standalone/videos/embed.scss | |||
@@ -23,17 +23,13 @@ html, body { | |||
23 | } | 23 | } |
24 | 24 | ||
25 | .vjs-peertube-link { | 25 | .vjs-peertube-link { |
26 | color: white; | 26 | color: #fff; |
27 | text-decoration: none; | 27 | text-decoration: none; |
28 | font-size: 1.3em; | 28 | font-size: $font-size; |
29 | line-height: 2.20; | 29 | line-height: $control-bar-height; |
30 | transition: all .4s; | 30 | transition: all .4s; |
31 | position: relative; | 31 | font-weight: $font-semibold; |
32 | right: 8px; | 32 | margin-right: 3px; |
33 | } | ||
34 | |||
35 | .vjs-resolution-button-label { | ||
36 | left: -7px; | ||
37 | } | 33 | } |
38 | 34 | ||
39 | .vjs-peertube-link:hover { | 35 | .vjs-peertube-link:hover { |
@@ -42,5 +38,21 @@ html, body { | |||
42 | 38 | ||
43 | // Fix volume panel because we added a new component (PeerTube link) | 39 | // Fix volume panel because we added a new component (PeerTube link) |
44 | .vjs-volume-panel { | 40 | .vjs-volume-panel { |
45 | margin-right: 130px !important; | 41 | margin-right: 121px !important; |
42 | } | ||
43 | |||
44 | @media screen and (max-width: 350px) { | ||
45 | .vjs-play-control { | ||
46 | padding: 0 5px !important; | ||
47 | width: 25px !important; | ||
48 | } | ||
49 | |||
50 | .vjs-volume-control { | ||
51 | display: none !important; | ||
52 | } | ||
53 | |||
54 | .vjs-volume-panel { | ||
55 | width: 26px !important; | ||
56 | margin-right: 140px !important; | ||
57 | } | ||
46 | } | 58 | } |