Blame view

node_modules/video.js/src/css/components/menu/_menu.scss 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  .vjs-menu-button {
    cursor: pointer;
  }
  
  // Change cursor back to default if the menu button is disabled
  .vjs-menu-button.vjs-disabled {
    cursor: default;
  }
  
  // prevent menus from opening while disabled
  .vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
    display: none;
  }
  
  .vjs-menu .vjs-menu-content {
    display: block;
    padding: 0;
    margin: 0;
    font-family: $text-font-family;
  
    // This allows scrolling of content if need be.
    overflow: auto;
  
    // When combined with `overflow: auto;`, this fixes gaps left by
    // scrollbars in older IE versions.
    box-sizing: content-box;
  }
  
  // Reset box-sizing inside the menu.
  .vjs-menu .vjs-menu-content > * {
    box-sizing: border-box;
  }
  
  // prevent menus from opening while scrubbing (FF, IE)
  .vjs-scrubbing .vjs-menu-button:hover .vjs-menu {
    display: none;
  }
  
  .vjs-menu li {
    list-style: none;
    margin: 0;
    padding: 0.2em 0;
    line-height: 1.4em;
    font-size: 1.2em;
    text-align: center;
    text-transform: lowercase;
  }
  
  .vjs-menu li.vjs-menu-item:focus,
  .vjs-menu li.vjs-menu-item:hover {
    @include background-color-with-alpha($secondary-background-color, $secondary-background-transparency);
  }
  
  .vjs-menu li.vjs-selected,
  .vjs-menu li.vjs-selected:focus,
  .vjs-menu li.vjs-selected:hover {
    background-color: $primary-foreground-color;
    color: $primary-background-color;
  }
  
  .vjs-menu li.vjs-menu-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 2em;
    padding: 0;
    margin: 0 0 0.3em 0;
    font-weight: bold;
    cursor: default;
  }