Commit d861230c authored by 王玉鑫's avatar 王玉鑫

fix: 输入框样式修正

parent 01d1f72f
...@@ -79,15 +79,6 @@ body { ...@@ -79,15 +79,6 @@ body {
} }
} }
.el-input .el-input__wrapper.el-input__wrapper {
&.is-focus.is-focus {
box-shadow: 0 0 0 1px rgb(220, 223, 230) inset !important;
}
}
.el-textarea__inner:focus {
box-shadow: 0 0 0 1px rgb(220, 223, 230) inset !important;
}
$namespace: 'lyy'; // change the 'mx' to 'xmx'. then <date-picker prefix-class="lyy" /> $namespace: 'lyy'; // change the 'mx' to 'xmx'. then <date-picker prefix-class="lyy" />
$default-color: #555; $default-color: #555;
......
...@@ -483,3 +483,13 @@ watch( ...@@ -483,3 +483,13 @@ watch(
width: 80px; width: 80px;
} }
</style> </style>
<style lang="scss">
.filter-view {
.el-input .el-input__wrapper.el-input__wrapper {
&.is-focus.is-focus {
box-shadow: 0 0 0 1px rgb(220, 223, 230) inset !important;
}
}
}
</style>
...@@ -146,6 +146,14 @@ const commit = debounce( ...@@ -146,6 +146,14 @@ const commit = debounce(
.el-input__wrapper { .el-input__wrapper {
height: 38px; height: 38px;
} }
.el-input .el-input__wrapper.el-input__wrapper {
&.is-focus.is-focus {
box-shadow: 0 0 0 1px rgb(220, 223, 230) inset !important;
}
}
.el-textarea__inner:focus {
box-shadow: 0 0 0 1px rgb(220, 223, 230) inset !important;
}
} }
.lyy .el-select-dropdown__item.selected { .lyy .el-select-dropdown__item.selected {
color: #c0322b; color: #c0322b;
......
<template> <template>
<div> <div class="my-park-list">
<div class="flex"> <div class="flex">
<div class="flex space-x-[10px]"> <div class="flex space-x-[10px]">
<div> <div>
<ElSelect v-model="params.isSystem" clearable placeholder="请选择来源方式"> <ElSelect
v-model="params.isSystem"
clearable
placeholder="请选择来源方式"
popper-class="source-select"
>
<ElOption <ElOption
v-for="source of sourceList" v-for="source of sourceList"
:key="source.dictCode" :key="source.dictCode"
...@@ -46,7 +51,12 @@ ...@@ -46,7 +51,12 @@
></DatePicker> ></DatePicker>
</div> </div>
<div> <div>
<ElSelect v-model="params.status" clearable placeholder="请选择审批状态"> <ElSelect
v-model="params.status"
clearable
placeholder="请选择审批状态"
popper-class="source-select"
>
<ElOption <ElOption
v-for="status of statusList" v-for="status of statusList"
:key="status.dictCode" :key="status.dictCode"
...@@ -265,3 +275,21 @@ const tableHeaderStyle = { ...@@ -265,3 +275,21 @@ const tableHeaderStyle = {
// } // }
} }
</style> </style>
<style lang="scss">
.my-park-list {
.el-input .el-input__wrapper.el-input__wrapper {
&.is-focus.is-focus {
box-shadow: 0 0 0 1px rgb(220, 223, 230) inset !important;
}
}
.el-textarea__inner:focus {
box-shadow: 0 0 0 1px rgb(220, 223, 230) inset !important;
}
}
.source-select {
.el-select-dropdown__item.selected {
color: #c0322b;
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment