scratch-gui
Version:
GraphicaL User Interface for creating and running Scratch 3.0 projects
30 lines (26 loc) • 755 B
CSS
@import "../../css/colors.css";
@import "../../css/units.css";
.context-menu {
min-width: 130px;
padding: 5px 0; /* The white strip at the top and bottom of the menu */
margin: 2px 0 0; /* To keep the menu below the cursor comfortably */
font-size: 0.85rem;
text-align: left;
background-color: $ui-white;
border: 1px solid $ui-black-transparent;
border-radius: calc($space / 2);
box-shadow: 0px 0px 5px 1px $ui-black-transparent;
pointer-events: none;
transition: opacity 0.2s ease;
z-index: 200; /* Above the stage */
}
.menu-item {
padding: 8px 12px;
white-space: nowrap;
cursor: pointer;
transition: 0.1s ease;
}
.menu-item:hover {
background: $motion-primary;
color: white;
}