Added the Porter Stemmer module to improve searches. This doesn't deal with some...
[yaffs-website] / node_modules / video.js / src / css / components / _time.scss
1 .video-js .vjs-time-control {
2   @include flex(none);
3   font-size: 1em;
4   line-height: 3em;
5   min-width: 2em;
6   width: auto;
7   padding-left: 1em;
8   padding-right: 1em;
9 }
10
11 .vjs-live .vjs-time-control {
12   display: none;
13 }
14
15 // We need the extra specificity that referencing .vjs-no-flex provides.
16 .video-js .vjs-current-time,
17 .vjs-no-flex .vjs-current-time {
18   display: none;
19 }
20
21 .video-js .vjs-duration,
22 .vjs-no-flex .vjs-duration {
23   display: none;
24 }
25
26 .vjs-time-divider {
27   display: none;
28   line-height: 3em;
29 }
30
31 .vjs-live .vjs-time-divider {
32   // Already the default, but we want to ensure when the player is live
33   // this hides in the same way as the other time controls for other skins
34   display: none;
35 }