1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-24 07:36:40 +02:00
keeweb/app/styles/common/_dropdown.scss

28 lines
667 B
SCSS

.dropdown {
position: absolute;
z-index: $z-index-no-modal;
border-radius: $base-border-radius;
background: var(--background-color);
border: light-border();
box-shadow: dropdown-box-shadow();
&__item {
padding: 8px 12px;
cursor: pointer;
white-space: nowrap;
&--active,
&--active:hover {
@include area-selected(right);
}
@include nomobile {
@include area-selectable(right);
&--active,
&--active:hover {
@include area-selected(right);
}
}
&-icon {
width: 1.6em;
}
}
}