Browse Source

fix(nc-gui): select input dropdown border radius should be same in all the places

pull/8188/head
Ramesh Mane 3 months ago
parent
commit
84c84f713b
  1. 4
      packages/nc-gui/components/nc/Select.vue
  2. 2
      packages/nc-gui/components/smartsheet/toolbar/FieldsMenu.vue

4
packages/nc-gui/components/nc/Select.vue

@ -106,7 +106,7 @@ const onChange = (value: string) => {
} }
.nc-select-dropdown { .nc-select-dropdown {
@apply !rounded-xl py-1.5; @apply !rounded-lg py-1.5;
.rc-virtual-list-holder { .rc-virtual-list-holder {
overflow-y: auto; overflow-y: auto;
@ -129,7 +129,7 @@ const onChange = (value: string) => {
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
width: 4px; width: 4px;
@apply bg-gray-300; @apply bg-gray-300 rounded-md;
} }
&::-webkit-scrollbar-thumb:hover { &::-webkit-scrollbar-thumb:hover {
@apply bg-gray-400; @apply bg-gray-400;

2
packages/nc-gui/components/smartsheet/toolbar/FieldsMenu.vue

@ -409,7 +409,7 @@ useMenuCloseOnEsc(open)
" "
:key="field.id" :key="field.id"
:data-testid="`nc-fields-menu-${field.title}`" :data-testid="`nc-fields-menu-${field.title}`"
class="pl-2 flex flex-row items-center rounded-md hover:bg-gray-50" class="pl-2 flex flex-row items-center rounded-md hover:bg-gray-100"
@click.stop @click.stop
> >
<component :is="iconMap.drag" class="cursor-move !h-3.75 text-gray-600 mr-1" /> <component :is="iconMap.drag" class="cursor-move !h-3.75 text-gray-600 mr-1" />

Loading…
Cancel
Save