mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix: Update size of select components in filters dropdown (#4747)
* fix: Update size of select components in filters dropdown * fix: Update select tags styling
This commit is contained in:
parent
3d15c52bd7
commit
d6d442d458
|
@ -28,10 +28,9 @@
|
|||
|
||||
.el-select__tags + .el-input {
|
||||
input {
|
||||
box-sizing: content-box;
|
||||
padding: 0;
|
||||
text-indent: var(--spacing-xs);
|
||||
width: calc(100% - 2px);
|
||||
box-sizing: border-box;
|
||||
padding: 0 0 0 var(--spacing-2xs);
|
||||
text-indent: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -92,7 +91,7 @@
|
|||
border: none;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
margin-left: 15px;
|
||||
margin-left: var(--spacing-2xs);
|
||||
color: var.$select-multiple-input-color;
|
||||
font-size: var.$select-font-size;
|
||||
appearance: none;
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
:users="ownedByUsers"
|
||||
:currentUserId="usersStore.currentUser.id"
|
||||
:value="value.ownedBy"
|
||||
size="small"
|
||||
size="medium"
|
||||
@input="setKeyValue('ownedBy', $event)"
|
||||
/>
|
||||
</enterprise-edition>
|
||||
|
@ -54,7 +54,7 @@
|
|||
:users="sharedWithUsers"
|
||||
:currentUserId="usersStore.currentUser.id"
|
||||
:value="value.sharedWith"
|
||||
size="small"
|
||||
size="medium"
|
||||
@input="setKeyValue('sharedWith', $event)"
|
||||
/>
|
||||
</enterprise-edition>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
/>
|
||||
<n8n-select
|
||||
:value="filters.type"
|
||||
size="small"
|
||||
size="medium"
|
||||
multiple
|
||||
filterable
|
||||
ref="typeInput"
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
color="text-base"
|
||||
class="mb-3xs"
|
||||
/>
|
||||
<n8n-select :value="filters.status" @input="setKeyValue('status', $event)" size="small">
|
||||
<n8n-select :value="filters.status" @input="setKeyValue('status', $event)" size="medium">
|
||||
<n8n-option
|
||||
v-for="option in statusFilterOptions"
|
||||
:key="option.label"
|
||||
|
|
Loading…
Reference in a new issue