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