Browse Source

chore(nc-gui): remove box shadow from select fields & fix filter grid alignment

pull/3975/head
braks 2 years ago
parent
commit
ab6fcdcd27
  1. 6
      packages/nc-gui/components/smartsheet/toolbar/ColumnFilter.vue
  2. 6
      packages/nc-gui/components/smartsheet/toolbar/FieldListAutoCompleteDropdown.vue

6
packages/nc-gui/components/smartsheet/toolbar/ColumnFilter.vue

@ -262,10 +262,8 @@ defineExpose({
<style scoped>
.nc-filter-grid {
display: grid;
grid-template-columns: 18px 75px auto auto auto;
@apply gap-[12px]
align-items: center;
grid-template-columns: 18px 83px 160px auto auto;
@apply grid gap-[12px] items-center;
}
:deep(.ant-select-item-option) {

6
packages/nc-gui/components/smartsheet/toolbar/FieldListAutoCompleteDropdown.vue

@ -65,3 +65,9 @@ const filterOption = (input: string, option: any) => option.label.toLowerCase()?
</a-select-option>
</a-select>
</template>
<style lang="scss">
.ant-select-selection-search-input {
box-shadow: none !important;
}
</style>

Loading…
Cancel
Save