cssOMS/menu.scss
Dennis Eichhorn 85ef1f8ccb bump
2024-02-28 05:09:14 +00:00

16 lines
358 B
SCSS
Executable File

.ctx-menu {
position: absolute;
background: #fff;
border: 1px solid #ccc;
z-index: 1000; // Table headers are sticky which has a z-index of 999. The menu should be above
label {
padding: .5rem;
width: 100%;
box-sizing: border-box;
&:hover {
background: var(--trow-bg-hover);
}
}
}