Files
HangmanLab.Frontend/src/components/Navigations/PathNode.css

49 lines
784 B
CSS

.menu {
background-color: white;
border: 1px solid #eee;
}
.path-node {
margin-left: 1rem;
}
.path-node > .has-text-weight-bold {
display: inline-flex;
align-items: center;
padding: 0.25rem 0;
}
.path-node .is-expanded {
font-size: 1rem;
font-weight: bold;
color: #363636;
}
.path-node .menu-list-item {
padding: 0.25rem 0.5rem;
border-radius: 4px;
}
.path-node .menu-list-item:hover {
background-color: #f0f0f0;
color: #00d1b2;
}
.loading-indicator {
color: #00d1b2;
font-size: 0.9rem;
margin-left: 1rem;
}
.actions {
display: flex;
justify-content: flex-end;
margin-left: auto;
}
.path-node-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}