|
|
@ -479,18 +479,13 @@ useMenuCloseOnEsc(open) |
|
|
|
</Draggable> |
|
|
|
</Draggable> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div v-if="!filterQuery" class="flex px-2 gap-2 py-2 border-t-1 border-gray-200"> |
|
|
|
<div v-if="!filterQuery" class="flex px-2 gap-2 py-2"> |
|
|
|
<NcButton |
|
|
|
<NcButton class="nc-fields-show-all-fields" size="small" type="ghost" @click="showAllColumns = !showAllColumns"> |
|
|
|
class="nc-fields-show-all-fields !text-gray-500 !w-1/2 !text-xs" |
|
|
|
|
|
|
|
size="small" |
|
|
|
|
|
|
|
type="ghost" |
|
|
|
|
|
|
|
@click="showAllColumns = !showAllColumns" |
|
|
|
|
|
|
|
> |
|
|
|
|
|
|
|
{{ showAllColumns ? 'Hide all' : 'Show all' }} fields |
|
|
|
{{ showAllColumns ? 'Hide all' : 'Show all' }} fields |
|
|
|
</NcButton> |
|
|
|
</NcButton> |
|
|
|
<NcButton |
|
|
|
<NcButton |
|
|
|
v-if="!isPublic" |
|
|
|
v-if="!isPublic" |
|
|
|
class="nc-fields-show-system-fields !text-gray-500 !w-1/2 !text-xs" |
|
|
|
class="nc-fields-show-system-fields" |
|
|
|
size="small" |
|
|
|
size="small" |
|
|
|
type="ghost" |
|
|
|
type="ghost" |
|
|
|
@click="showSystemField = !showSystemField" |
|
|
|
@click="showSystemField = !showSystemField" |
|
|
@ -511,4 +506,9 @@ useMenuCloseOnEsc(open) |
|
|
|
.nc-fields-menu-items-ghost { |
|
|
|
.nc-fields-menu-items-ghost { |
|
|
|
@apply bg-gray-50; |
|
|
|
@apply bg-gray-50; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.nc-fields-show-all-fields, |
|
|
|
|
|
|
|
.nc-fields-show-system-fields { |
|
|
|
|
|
|
|
@apply !text-xs !w-1/2 !text-gray-500 !border-none bg-gray-100 hover:(!text-gray-600 bg-gray-200); |
|
|
|
|
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|