58 lines
841 B
CSS
58 lines
841 B
CSS
|
|
.ctx-menu {
|
||
|
|
display: block;
|
||
|
|
position: fixed;
|
||
|
|
background: #1e1e1e;
|
||
|
|
border: 1px solid #3a3a3a;
|
||
|
|
border-radius: 4px;
|
||
|
|
padding: 4px 0;
|
||
|
|
min-width: 160px;
|
||
|
|
box-shadow: 0 4px 16px rgba(0,0,0,0.5);
|
||
|
|
z-index: 9999;
|
||
|
|
font-size: 13px;
|
||
|
|
font-family: inherit;
|
||
|
|
color: #d4d4d4;
|
||
|
|
user-select: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ctx-entry {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
padding: 5px 12px;
|
||
|
|
cursor: pointer;
|
||
|
|
gap: 8px;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ctx-entry:hover {
|
||
|
|
background: #2a4a7f;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ctx-entry-dir {
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ctx-label {
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ctx-arrow {
|
||
|
|
font-size: 9px;
|
||
|
|
opacity: 0.6;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ctx-readonly {
|
||
|
|
display: block;
|
||
|
|
padding: 5px 12px;
|
||
|
|
color: #888;
|
||
|
|
font-style: italic;
|
||
|
|
white-space: nowrap;
|
||
|
|
cursor: default;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ctx-separator {
|
||
|
|
display: block;
|
||
|
|
height: 1px;
|
||
|
|
background: #3a3a3a;
|
||
|
|
margin: 4px 0;
|
||
|
|
}
|