mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-30 06:55:16 -04:00
32 lines
499 B
Text
32 lines
499 B
Text
|
|
#view .context-menu {
|
|
|
|
display: block;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
background-color: @col-widget-back;
|
|
border: @border-widget;
|
|
color: #999;
|
|
z-index: 10;
|
|
font-size: 0.9em;
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-align: left;
|
|
|
|
li {
|
|
padding: 8px 12px 10px 12px;
|
|
white-space: nowrap;
|
|
border-top: @border-widget-sep;
|
|
.transition(all 0.2s ease-in-out);
|
|
|
|
&:hover {
|
|
color: @col-hover;
|
|
background-color: @col-widget-back-hover;
|
|
}
|
|
}
|
|
}
|
|
}
|