diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-11 15:25:46 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-11 15:25:46 +0200 |
commit | 2a19a1e4de848c8c60ef4b4e606770220b3a28df (patch) | |
tree | f4d37dc34887df5ade26fab2a25a741674b0d77c /client/src/sass/player/mobile.scss | |
parent | f286060081609f9f96475da7f80225f47de92787 (diff) | |
download | PeerTube-2a19a1e4de848c8c60ef4b4e606770220b3a28df.tar.gz PeerTube-2a19a1e4de848c8c60ef4b4e606770220b3a28df.tar.zst PeerTube-2a19a1e4de848c8c60ef4b4e606770220b3a28df.zip |
Split player sass file
Diffstat (limited to 'client/src/sass/player/mobile.scss')
-rw-r--r-- | client/src/sass/player/mobile.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/client/src/sass/player/mobile.scss b/client/src/sass/player/mobile.scss new file mode 100644 index 000000000..c2fa855ab --- /dev/null +++ b/client/src/sass/player/mobile.scss | |||
@@ -0,0 +1,16 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | /* Special mobile style */ | ||
5 | |||
6 | .video-js.vjs-peertube-skin.vjs-is-mobile { | ||
7 | .vjs-control-bar { | ||
8 | .vjs-progress-control .vjs-slider .vjs-play-progress { | ||
9 | // Always display the circle on mobile | ||
10 | &::before { | ||
11 | margin-top: -1px; | ||
12 | opacity: 1; | ||
13 | } | ||
14 | } | ||
15 | } | ||
16 | } \ No newline at end of file | ||