cc-core-cli
Version:
Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.
60 lines (52 loc) • 980 B
CSS
.menu-node {
background-color: white;
margin-bottom: 4px;
padding-right: 12px;
border: 1px dashed #d9d9d9;
border-radius: 8px;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.menu-node:hover {
border-color: var(--primary-color);
}
.menu-drag-source {
cursor: grab;
padding: 8px 4px;
background-color: #f6f7f9;
align-self: stretch;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.menu-node .menu-label {
cursor: pointer;
display: flex;
flex-direction: row;
align-items: center;
flex: 1;
padding: 8px 8px 8px 0px;
}
.menu-node .menu-label .icon {
height: 20px;
margin-bottom: 2px;
padding-top: 0px;
}
.menu-arrow-icon {
cursor: pointer;
padding: 0px 4px;
}
.menu-del-icon {
padding: 0px 4px;
cursor: pointer;
display: none;
color: #C3C3C3;
}
.menu-node:hover .menu-del-icon {
display: flex;
}
.menu-del-icon:hover {
color: #F44336;
}