openreplay/frontend/app/components/Funnels/FunnelMenuItem/funnelMenuItem.css
2021-05-01 15:12:01 +05:30

43 lines
No EOL
549 B
CSS

.menuItem {
border-radius: 3px;
border: solid thin transparent;
color: $gray-dark;
cursor: pointer;
&:hover {
color: $teal;
& svg {
fill: $teal;
}
& .actions {
opacity: 1;
}
}
&.active {
color: $teal;
}
& .disabled {
opacity: 0.5;
}
& .iconLabel {
min-width: 68%;
max-width: 68%;
}
& .title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-left: 10px;
margin-top: 1px;
}
& .actions {
opacity: 0;
}
}
.teamIcon {
}