2020-03-27 20:59:38 +00:00
|
|
|
.dropdown-menu {
|
2022-08-10 12:38:49 +00:00
|
|
|
@apply absolute bg-white dark:bg-gray-900 z-[1001] rounded-md shadow-lg py-1 w-56 dark:ring-2 dark:ring-primary-700 focus:outline-none;
|
2022-03-21 18:09:01 +00:00
|
|
|
|
2020-10-11 21:23:19 +00:00
|
|
|
&.left { transform-origin: 100% 50%; }
|
|
|
|
&.top { transform-origin: 50% 100%; }
|
|
|
|
&.bottom { transform-origin: 50% 0; }
|
|
|
|
&.right { transform-origin: 0 50%; }
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&__arrow {
|
2022-03-21 18:09:01 +00:00
|
|
|
@apply absolute w-0 h-0;
|
2020-05-16 03:48:08 +00:00
|
|
|
border: 0 solid transparent;
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&.left {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply border-l-white dark:border-l-gray-900;
|
2020-05-16 03:48:08 +00:00
|
|
|
right: -5px;
|
|
|
|
margin-top: -5px;
|
|
|
|
border-width: 5px 0 5px 5px;
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&.top {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply border-t-white dark:border-t-gray-900;
|
2020-05-16 03:48:08 +00:00
|
|
|
bottom: -5px;
|
|
|
|
margin-left: -5px;
|
|
|
|
border-width: 5px 5px 0;
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&.bottom {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply border-b-white dark:border-b-gray-900;
|
2020-05-16 03:48:08 +00:00
|
|
|
top: -5px;
|
|
|
|
margin-left: -5px;
|
|
|
|
border-width: 0 5px 5px;
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&.right {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply border-r-white dark:border-r-gray-900;
|
2020-05-16 03:48:08 +00:00
|
|
|
left: -5px;
|
|
|
|
margin-top: -5px;
|
|
|
|
border-width: 5px 5px 5px 0;
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
ul {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2021-11-07 09:22:08 +00:00
|
|
|
&__item {
|
2022-05-25 15:59:54 +00:00
|
|
|
@apply focus-within:ring-primary-500 focus-within:ring-2;
|
|
|
|
|
2021-11-07 09:22:08 +00:00
|
|
|
a {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply flex px-4 py-2.5 text-sm text-gray-700 dark:text-gray-500 hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gray-100 dark:focus:bg-primary-800 cursor-pointer;
|
2021-11-04 18:16:04 +00:00
|
|
|
|
2022-03-05 19:55:41 +00:00
|
|
|
> .svg-icon:first-child {
|
2022-03-21 18:09:01 +00:00
|
|
|
@apply h-5 w-5 mr-2.5 transition-none;
|
2021-11-07 09:22:08 +00:00
|
|
|
|
|
|
|
svg {
|
2022-03-30 13:07:17 +00:00
|
|
|
@apply stroke-[1.5px] transition-none;
|
2021-11-07 09:22:08 +00:00
|
|
|
}
|
2021-11-04 18:16:04 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-11 18:29:12 +00:00
|
|
|
|
|
|
|
&.destructive a {
|
2022-03-30 13:07:17 +00:00
|
|
|
@apply text-danger-600 dark:text-danger-400;
|
2021-12-11 18:29:12 +00:00
|
|
|
}
|
2020-05-16 03:48:08 +00:00
|
|
|
}
|
2020-05-29 00:58:37 +00:00
|
|
|
|
2020-05-16 03:48:08 +00:00
|
|
|
&__separator {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply block my-2 h-[1px] bg-gray-100 dark:bg-gray-800;
|
2021-03-25 18:23:11 +00:00
|
|
|
}
|
2020-03-27 20:59:38 +00:00
|
|
|
}
|
|
|
|
// end .dropdown-menu
|