videojs-contextmenu-pt
Version:
A cross-device context menu UI for video.js players.
31 lines (25 loc) • 673 B
CSS
.vjs-contextmenu-ui-menu {
position: absolute;
}
.vjs-contextmenu-ui-menu .vjs-menu-content {
/* Same background-color as the control bar. */
background-color: #2B333F;
background-color: rgba(43, 51, 63, 0.7);
border-radius: 0.3em;
padding: 0.25em;
}
.vjs-contextmenu-ui-menu .vjs-menu-item {
border-radius: 0.3em;
cursor: pointer;
margin: 0 0 1px;
padding: 0.5em 1em;
/* Override video.js styles for menus */
font-size: 1em;
line-height: 1.2;
text-transform: none;
}
.vjs-contextmenu-ui-menu .vjs-menu-item:active,
.vjs-contextmenu-ui-menu .vjs-menu-item:hover {
background-color: rgba(0, 0, 0, 0.5);
text-shadow: 0em 0em 1em white;
}