@charset "UTF-8";
.contextmenu {
    position: absolute;
}
.contextmenu-default {
    border: 1px solid #aaa;background: white;box-shadow: darkgrey 0 0 10px 0;
    margin: 0;  padding: 3px 0;  display: none;list-style: none;cursor: pointer;box-sizing: border-box;
}

.contextmenu-default>li>a {  display: block;  padding: 2px 10px;cursor: pointer; }
.contextmenu-default>li.sm {
    font-size: 14px;
}
.contextmenu-default>li>a.disabled {  display: block;  padding: 2px 10px;cursor: not-allowed; color:gray; }
.contextmenu-default>li:not(:last-child)>a{  border-bottom: 1px solid #ddd; }
.child-box{
    position: relative;top:50%;left:100%;height:0;z-index: 2;
}

.child-ul{
    position: relative;top:-30px;left:0;min-width: 50px;
}
.contextmenu-default>li>a>span{
    font-weight: bold;
    float: right;
}
.contextmenu-default a>i{
    margin-right: 6px;
    display: inline-block;
}
.contextmenu-default:not(.child-ul)>li>a>i{
    min-width: 16px;
}
.child-ul a>i{
    min-width: 14px;
}

.contextmenu-default.black>li:hover>a{
    background: #333;
    color: white;
}
.contextmenu-default.black>li:hover>a.disabled{
    background: #666;
    color: lightgray;
}
.contextmenu-default.blue>li:hover>a{
    background: #337ab7;
    color: white;
}
.contextmenu-default.blue>li:hover>a.disabled{
    background: #337ac7;
    color: lightgray;
}
.contextmenu-default.green>li:hover>a{
    background: #009688;
    color: white;
}
.contextmenu-default.green>li:hover>a.disabled{
    background: #119688;
    color: lightgray;
}
.contextmenu-default.orange>li:hover>a{
    background: darkorange;
    color: white;
}
.contextmenu-default.orange>li:hover>a.disabled{
    background: darkorange;
    color: lightgray;
}
.auto-show>li:hover .child-box>.child-ul{
    display: inline-block;
}
