mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
<template> |
|
<a-sub-menu class="nc-sub-menu" popup-class-name="nc-submenu-popup"> |
|
<template #title> |
|
<div class="flex flex-row items-center gap-x-1.5 py-1.75 justify-between group hover:text-gray-800"> |
|
<div class="flex flex-row items-center gap-x-2"> |
|
<slot name="title" /> |
|
</div> |
|
|
|
<GeneralIcon icon="arrowRight" class="text-base text-gray-600 group-hover:text-gray-800" /> |
|
</div> |
|
</template> |
|
|
|
<template #expandIcon> </template> |
|
<div class="py-1.5"> |
|
<slot /> |
|
</div> |
|
</a-sub-menu> |
|
</template> |
|
|
|
<style lang="scss"> |
|
.ant-dropdown-menu-submenu.nc-sub-menu { |
|
@apply flex mx-1.5 rounded-md overflow-hidden !hover:bg-gray-100; |
|
} |
|
|
|
.nc-sub-menu > .ant-dropdown-menu-submenu-title { |
|
@apply pl-2 py-0 w-full; |
|
} |
|
|
|
.ant-dropdown-menu-submenu .ant-dropdown-menu-submenu-title:hover { |
|
@apply !bg-gray-100; |
|
} |
|
|
|
.nc-submenu-popup { |
|
@apply !rounded-lg border-1 border-gray-50; |
|
} |
|
.nc-submenu-popup .ant-dropdown-menu.ant-dropdown-menu-sub { |
|
@apply !rounded-lg !shadow-lg shadow-gray-200; |
|
} |
|
|
|
.nc-menu-item::after { |
|
background: none; |
|
} |
|
</style>
|
|
|