34 lines
573 B
CSS
34 lines
573 B
CSS
.context-menu {
|
|
position: fixed;
|
|
background: #0d0d1a;
|
|
border: 2px solid #333333;
|
|
border-radius: 0;
|
|
box-shadow: 3px 3px 0 #000000;
|
|
padding: 4px;
|
|
min-width: 200px;
|
|
z-index: 9000;
|
|
}
|
|
|
|
.context-menu-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 10px;
|
|
border-radius: 0;
|
|
font-size: 8px;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
cursor: default;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.context-menu-item:hover {
|
|
background: var(--pixel-cyan);
|
|
color: #000;
|
|
}
|
|
|
|
.context-menu-separator {
|
|
height: 2px;
|
|
background: #333333;
|
|
margin: 3px 6px;
|
|
}
|