Blame view

node_modules/video.js/src/css/components/_adaptive.scss 1.57 KB
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  // When the player is absurdly tiny, display nothing but:
  // - Play button
  // - Fullscreen Button
  .video-js.vjs-layout-tiny:not(.vjs-fullscreen) {
    .vjs-custom-control-spacer {
      @include flex(auto);
      display: block;
    }
  
    &.vjs-no-flex .vjs-custom-control-spacer { width: auto; }
  
    .vjs-current-time, .vjs-time-divider, .vjs-duration, .vjs-remaining-time,
    .vjs-playback-rate, .vjs-progress-control,
    .vjs-mute-control, .vjs-volume-control, .vjs-volume-panel,
    .vjs-chapters-button, .vjs-descriptions-button, .vjs-captions-button,
    .vjs-subtitles-button, .vjs-subs-caps-button, .vjs-audio-button { display: none; }
  }
  
  // When the player is x-small, display nothing but:
  // - Play button
  // - Progress bar
  // - Fullscreen Button
  .video-js.vjs-layout-x-small:not(.vjs-fullscreen) {
    .vjs-current-time, .vjs-time-divider, .vjs-duration, .vjs-remaining-time,
    .vjs-playback-rate,
    .vjs-mute-control, .vjs-volume-control, .vjs-volume-panel,
    .vjs-chapters-button, .vjs-descriptions-button, .vjs-captions-button,
    .vjs-subtitles-button, .vjs-subs-caps-button, .vjs-audio-button { display: none; }
  }
  
  
  // When the player is small, display nothing but:
  // - Play button
  // - Progress bar
  // - Volume menu button
  // - Subs-Caps Button
  // - Fullscreen button
  .video-js.vjs-layout-small:not(.vjs-fullscreen) {
    .vjs-current-time, .vjs-time-divider, .vjs-duration, .vjs-remaining-time,
    .vjs-playback-rate,
    .vjs-mute-control, .vjs-volume-control, .vjs-volume-panel,
    .vjs-chapters-button, .vjs-descriptions-button, .vjs-captions-button,
    .vjs-subtitles-button, .vjs-audio-button { display: none; }
  }