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.
23 lines
524 B
23 lines
524 B
<template> |
|
<div class="nc-table-toolbar w-full py-1 flex gap-1 items-center" style="z-index: 7"> |
|
<SmartsheetToolbarSearchData class="flex-shrink" /> |
|
|
|
<SmartsheetToolbarFieldsMenu :show-system-fields="false" /> |
|
|
|
<SmartsheetToolbarColumnFilterMenu /> |
|
|
|
<SmartsheetToolbarSortListMenu /> |
|
|
|
<SmartsheetToolbarShareView /> |
|
|
|
<SmartsheetToolbarMoreActions /> |
|
|
|
<div class="flex-1" /> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
:deep(.nc-toolbar-btn) { |
|
@apply border-0 !text-xs font-semibold px-2; |
|
} |
|
</style>
|
|
|