mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
89 lines
1.6 KiB
CSS
89 lines
1.6 KiB
CSS
#winamp2-js .doubled #context-menu {
|
|
-moz-transform: scale(0.5);
|
|
-moz-transform-origin: top left;
|
|
-webkit-transform: scale(0.5);
|
|
-webkit-transform-origin: top left;
|
|
}
|
|
|
|
#winamp2-js #context-menu {
|
|
left: 0px;
|
|
}
|
|
|
|
#winamp2-js .bottom > #context-menu {
|
|
top: 12px;
|
|
}
|
|
|
|
#winamp2-js .top > #context-menu {
|
|
top: 0px;
|
|
}
|
|
|
|
#winamp2-js .selected #context-menu {
|
|
display: block;
|
|
}
|
|
|
|
#winamp2-js #context-menu,
|
|
#winamp2-js #context-menu ul {
|
|
display: none;
|
|
z-index: 50; /* Gross */
|
|
background-color: #ffffff;
|
|
position: absolute;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 1px solid #a7a394;
|
|
cursor: default;
|
|
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
#winamp2-js #context-menu li {
|
|
position: relative;
|
|
font-family: "Tahoma";
|
|
font-size: 11px;
|
|
color: black;
|
|
white-space: nowrap;
|
|
margin: 2px;
|
|
padding: 1px 18px 3px 18px;
|
|
display: block;
|
|
}
|
|
|
|
#winamp2-js #context-menu li.parent:after {
|
|
float: right;
|
|
content: "\25b8";
|
|
margin-right: -12px;
|
|
}
|
|
#winamp2-js #context-menu li a {
|
|
text-decoration: none;
|
|
color: black;
|
|
cursor: default;
|
|
}
|
|
|
|
#winamp2-js #context-menu li:hover,
|
|
#winamp2-js #context-menu li:hover a {
|
|
background-color: #224eb7;
|
|
color: #ffffff;
|
|
}
|
|
|
|
#winamp2-js #context-menu li.hr {
|
|
padding: 2px 0;
|
|
}
|
|
|
|
#winamp2-js #context-menu li.hr:hover {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
#winamp2-js #context-menu li.hr hr {
|
|
border: none;
|
|
height: 1px;
|
|
background-color: #a7a394;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#winamp2-js #context-menu ul {
|
|
left: 100%;
|
|
margin-left: -3px;
|
|
}
|
|
|
|
#winamp2-js #context-menu li:hover ul {
|
|
display: block;
|
|
}
|