umami/components/common/Menu.module.css

52 lines
626 B
CSS
Raw Normal View History

2020-08-06 08:03:07 +02:00
.menu {
background: var(--base50);
border: 1px solid var(--base500);
2020-08-06 08:03:07 +02:00
border-radius: 4px;
overflow: hidden;
2020-10-03 19:53:06 +02:00
z-index: 100;
2020-08-06 08:03:07 +02:00
}
.option {
font-size: var(--font-size-sm);
2020-08-06 08:03:07 +02:00
font-weight: normal;
background: var(--base50);
2020-08-06 08:03:07 +02:00
padding: 4px 16px;
cursor: pointer;
white-space: nowrap;
}
.option:hover {
background: var(--base100);
2020-08-06 08:03:07 +02:00
}
2020-08-10 00:13:38 +02:00
.float {
position: absolute;
min-width: 100px;
}
.top {
bottom: 100%;
margin-bottom: 5px;
}
.bottom {
top: 100%;
margin-top: 5px;
}
2020-08-06 08:03:07 +02:00
.left {
left: 0;
}
.right {
right: 0;
}
.divider {
border-top: 1px solid var(--base300);
}
2020-09-21 06:31:53 +02:00
.selected {
font-weight: 600;
}