Files
lucent-laravel/front/sass/_dropdown.scss
T

68 lines
875 B
SCSS
Raw Normal View History

2024-08-15 14:44:53 +03:00
.dropdown {
position: relative;
2024-08-15 22:11:26 +03:00
z-index: 20;
overflow: visible;
2024-08-15 14:44:53 +03:00
}
.dropdown-button > div {
display: flex;
align-items: center;
gap: 3px;
}
.dropdown-menu {
display: flex;
flex-direction: column;
padding: 10px;
overflow: visible;
position: absolute;
border-radius: 12px;
2024-08-15 22:11:26 +03:00
z-index: 20;
2024-08-17 19:23:19 +03:00
background: var(--p20);
2024-08-15 14:44:53 +03:00
transition: 600ms;
flex-grow: 1;
2024-08-15 18:52:53 +03:00
top: 35px;
2024-08-16 14:34:39 +03:00
min-width: max-content;
2024-08-15 14:44:53 +03:00
2024-08-17 19:23:19 +03:00
2024-08-16 17:38:26 +03:00
&.orientation-right {
2024-08-15 14:44:53 +03:00
right: 0;
}
2024-08-16 17:38:26 +03:00
&.orientation-left {
2024-08-15 14:44:53 +03:00
left: 0;
}
2024-08-16 14:34:39 +03:00
2024-08-15 14:44:53 +03:00
}
.dropdown-header, .dropdown-item {
display: flex;
align-items: center;
gap: 3px;
text-wrap: nowrap;
}
.dropdown-header {
padding: 10px;
}
.dropdown-item {
font-size: 14px;
padding: 3px 10px;
2024-08-17 19:23:19 +03:00
&:hover {
background: var(--p30);
2024-08-15 14:44:53 +03:00
border-radius: 12px;
2024-08-17 19:23:19 +03:00
button {
background: var(--p30);
}
2024-08-15 14:44:53 +03:00
}
2024-08-17 19:23:19 +03:00
2024-08-15 14:44:53 +03:00
.button-icon {
flex-shrink: 0;
}
}