Browse Source

fix : UI improvements

pull/3082/head
Naveen MR 2 years ago
parent
commit
877294f8f6
  1. 6
      packages/nc-gui-v2/components/cell/attachment/index.vue

6
packages/nc-gui-v2/components/cell/attachment/index.vue

@ -83,9 +83,9 @@ onKeyDown('Escape', () => {
<template #title> Click or drop a file into cell </template> <template #title> Click or drop a file into cell </template>
<div class="flex items-center gap-2"> <div class="flex items-center gap-2">
<MaterialSymbolsAttachFile class="transform group-hover:(text-pink-500 scale-120)" /> <MaterialSymbolsAttachFile class="transform group-hover:(text-pink-500 scale-120) text-gray-500 text-[10px]" />
<div v-if="!visibleItems.length" class="group-hover:text-primary">Add file(s)</div> <div v-if="!visibleItems.length" class="group-hover:text-primary text-gray-500 text-xs">Add file(s)</div>
</div> </div>
</a-tooltip> </a-tooltip>
</div> </div>
@ -131,7 +131,7 @@ onKeyDown('Escape', () => {
<a-tooltip v-else placement="bottom"> <a-tooltip v-else placement="bottom">
<template #title> View attachments </template> <template #title> View attachments </template>
<MdiArrowExpand class="select-none transform group-hover:(text-pink-500 scale-120)" @click.stop="modalVisible = true" /> <MdiArrowExpand class="select-none transform group-hover:(text-pink-500 scale-120) text-[10px] text-gray-500" @click.stop="modalVisible = true" />
</a-tooltip> </a-tooltip>
</div> </div>
</template> </template>

Loading…
Cancel
Save