current updates

This commit is contained in:
Peter Olu 2022-05-24 13:54:26 +01:00
parent f27c5d8b34
commit d00b36eefc

View File

@ -21,6 +21,7 @@ limitations under the License. -->
clearable clearable
multiple multiple
collapse-tags collapse-tags
automatic-dropdown
collapse-tags-tooltip collapse-tags-tooltip
placeholder="Select" placeholder="Select"
style="width: 240px" style="width: 240px"
@ -32,12 +33,12 @@ limitations under the License. -->
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
> >
<div class="flex-h items-center"> <div
style="justify-content: space-between"
class="flex-h items-center"
>
<span class="mr-5">{{ item.value }}</span> <span class="mr-5">{{ item.value }}</span>
<div <div class="flex-h items-center">
style="justify-content: space-between"
class="flex-h items-center"
>
<el-tooltip <el-tooltip
class="box-item" class="box-item"
effect="dark" effect="dark"
@ -51,7 +52,11 @@ limitations under the License. -->
> >
<Icon iconSize="sm" iconName="cancel" /> <Icon iconSize="sm" iconName="cancel" />
</el-button> </el-button>
<el-button v-else class="toggle-btn mx-3" @click="showColumns(item)"> <el-button
v-else
class="toggle-btn mx-3"
@click="showColumns(item)"
>
<Icon iconSize="sm" iconName="add" /> <Icon iconSize="sm" iconName="add" />
</el-button> </el-button>
</el-tooltip> </el-tooltip>
@ -718,4 +723,7 @@ watch(
.space-between { .space-between {
justify-content: space-between !important; justify-content: space-between !important;
} }
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected {
background: transparent;
}
</style> </style>