mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
52 lines
626 B
CSS
52 lines
626 B
CSS
.menu {
|
|
background: var(--base50);
|
|
border: 1px solid var(--base500);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
z-index: 100;
|
|
}
|
|
|
|
.option {
|
|
font-size: var(--font-size-sm);
|
|
font-weight: normal;
|
|
background: var(--base50);
|
|
padding: 4px 16px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.option:hover {
|
|
background: var(--base100);
|
|
}
|
|
|
|
.float {
|
|
position: absolute;
|
|
min-width: 100px;
|
|
}
|
|
|
|
.top {
|
|
bottom: 100%;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.bottom {
|
|
top: 100%;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.left {
|
|
left: 0;
|
|
}
|
|
|
|
.right {
|
|
right: 0;
|
|
}
|
|
|
|
.divider {
|
|
border-top: 1px solid var(--base300);
|
|
}
|
|
|
|
.selected {
|
|
font-weight: 600;
|
|
}
|