@import "./theme.scss";

.mfunsPlayer-menu {
    position: absolute;
    width: 170px;
    border-radius: $theme-border-radius;
    background: rgba(28, 28, 28, 0.85);
    padding: 5px 0;
    overflow: hidden;
    z-index: 10;
    display: none;
}

.mfunsPlayer-menu.mfunsPlayer-menu-show {
    display: block;
}

.mfunsPlayer-menu-item {
    height: 30px;
    box-sizing: border-box;
    cursor: pointer;
}
.mfunsPlayer-menu-item :hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mfunsPlayer-menu-item > a {
    text-decoration: none;
    display: inline-block;
    padding: 0 10px;
    line-height: 30px;
    color: #eee;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
