mirror of
https://github.com/vector-im/element-call.git
synced 2026-01-27 03:05:53 +00:00
54 lines
856 B
CSS
54 lines
856 B
CSS
.menu {
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.menuItem {
|
|
cursor: pointer;
|
|
height: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 12px;
|
|
color: var(--primary-content);
|
|
font-size: var(--font-size-body);
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.menuItem > * {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
|
|
.menuItem > :last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.menuItem.focused,
|
|
.menuItem:hover {
|
|
background-color: var(--quinary-content);
|
|
}
|
|
|
|
.menuItem.focused:first-child,
|
|
.menuItem:hover:first-child {
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
}
|
|
|
|
.menuItem.focused:last-child,
|
|
.menuItem:hover:last-child {
|
|
border-bottom-left-radius: 8px;
|
|
border-bottom-right-radius: 8px;
|
|
}
|
|
|
|
.checkIcon {
|
|
position: absolute;
|
|
right: 16px;
|
|
}
|
|
|
|
.checkIcon * {
|
|
stroke: var(--primary-content);
|
|
}
|