2014-05-11 22:41:58 +00:00
|
|
|
/*Initialize*/
|
|
|
|
ul.popupmenu {
|
|
|
|
display:none;
|
|
|
|
position: absolute;
|
2014-09-18 13:26:12 +00:00
|
|
|
padding:10px;
|
2014-05-11 22:41:58 +00:00
|
|
|
margin: 0;
|
2014-05-19 12:49:20 +00:00
|
|
|
bottom: 0;
|
2014-09-18 13:26:12 +00:00
|
|
|
margin-bottom: 35px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
padding-top: 10px;
|
2014-05-11 22:41:58 +00:00
|
|
|
right: 10px;
|
2014-06-18 11:42:31 +00:00
|
|
|
left: -5px;
|
2014-05-11 22:41:58 +00:00
|
|
|
width: 100px;
|
2014-09-18 13:26:12 +00:00
|
|
|
background-color: rgba(0,0,0,0.9);
|
|
|
|
border: 1px solid rgba(256, 256, 256, 0.2);
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:3px;
|
2014-05-11 22:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.popupmenu:after {
|
|
|
|
content: url('../images/popupPointer.png');
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2014-09-23 10:51:29 +00:00
|
|
|
bottom: -8px;
|
2014-06-18 11:42:31 +00:00
|
|
|
left: 11px;
|
2014-05-11 22:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.popupmenu li {
|
|
|
|
list-style-type: none;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.popupmenu li:hover {
|
2014-09-18 13:26:12 +00:00
|
|
|
background-color: rgba(256, 256, 256, .2);
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:3px;
|
2014-05-11 22:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Link Appearance*/
|
|
|
|
ul.popupmenu li a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff;
|
|
|
|
padding: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 9pt;
|
|
|
|
}
|
|
|
|
|
2014-05-19 12:49:20 +00:00
|
|
|
ul.popupmenu li a i.icon-kick {
|
|
|
|
font-size: 8pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.popupmenu li a span {
|
|
|
|
display: inline-block;
|
|
|
|
width: 20px;
|
|
|
|
height: 16px;
|
|
|
|
text-align: center;
|
2014-05-11 22:41:58 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 12:46:53 +00:00
|
|
|
span.remotevideomenu:hover ul.popupmenu, ul.popupmenu:hover {
|
2014-05-11 22:41:58 +00:00
|
|
|
display:block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.disabled {
|
|
|
|
color: gray !important;
|
|
|
|
pointer-events: none;
|
2014-09-29 12:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.popupmenuPadding {
|
|
|
|
height: 35px;
|
|
|
|
width: 100px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: -35;
|
|
|
|
left: 0px;
|
2014-05-11 22:41:58 +00:00
|
|
|
}
|