diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-21 10:28:21 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-27 19:40:52 +0100 |
commit | 81de19482b89342c3dbc098a9f512ef7f1056e45 (patch) | |
tree | f74841eaee7bc6a4008af28b2cedfa12cd2ffd34 /client/src/sass | |
parent | 7e9334c34db23e5ad1e118151b24c720dd985984 (diff) | |
download | PeerTube-81de19482b89342c3dbc098a9f512ef7f1056e45.tar.gz PeerTube-81de19482b89342c3dbc098a9f512ef7f1056e45.tar.zst PeerTube-81de19482b89342c3dbc098a9f512ef7f1056e45.zip |
Fix margin issue when seeking video
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/video-js-custom.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/src/sass/video-js-custom.scss b/client/src/sass/video-js-custom.scss index 6ad21988e..34a958764 100644 --- a/client/src/sass/video-js-custom.scss +++ b/client/src/sass/video-js-custom.scss | |||
@@ -334,9 +334,10 @@ $slider-bg-color: lighten($primary-background-color, 33%); | |||
334 | 334 | ||
335 | // Thanks: https://projects.lukehaas.me/css-loaders/ | 335 | // Thanks: https://projects.lukehaas.me/css-loaders/ |
336 | .vjs-loading-spinner { | 336 | .vjs-loading-spinner { |
337 | margin: -25px 0 0 -25px; | 337 | margin: 0 !important; |
338 | position: absolute; | 338 | position: absolute; |
339 | top: 50%; | 339 | // 15px is the nav bar height |
340 | top: calc(50% - 15px); | ||
340 | left: 50%; | 341 | left: 50%; |
341 | font-size: 10px; | 342 | font-size: 10px; |
342 | position: relative; | 343 | position: relative; |