openreplay/frontend/app/components/ui/SideMenuItem/sideMenuItem.module.css
Shekar Siri ee1a775379
change(ui): sessions settings moved to preferences (#1380)
* change(ui): sessions settings

* dev merge
2023-06-28 13:26:11 +02:00

41 lines
No EOL
527 B
CSS

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