6eb4722b1a595527af04eb3597018fa479e6e381
[yaffs-website] / node_modules / video.js / src / css / components / menu / _menu-popup.scss
1 .vjs-menu-button-popup .vjs-menu {
2   display: none;
3   position: absolute;
4   bottom: 0;
5   width: 10em;
6   left: -3em; // (Width of vjs-menu - width of button) / 2
7   height: 0em;
8   margin-bottom: 1.5em;
9   border-top-color: rgba($primary-background-color, $primary-background-transparency); // Same as ul background
10 }
11
12 // Button Pop-up Menu
13 .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
14   @include background-color-with-alpha($primary-background-color, $primary-background-transparency);
15
16   position: absolute;
17   width: 100%;
18   bottom: 1.5em; // Same bottom as vjs-menu border-top
19   max-height: 15em;
20 }
21
22 .vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu,
23 .vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
24   display: block;
25 }