优化审批台的搜索框看不清的问题

This commit is contained in:
Mr.j 2025-08-07 17:38:41 +08:00
parent e83579dc57
commit d6f87cd0db
2 changed files with 79 additions and 0 deletions

View File

@ -195,6 +195,14 @@ watch(() => props.loading, (newVal) => {
<style scoped lang="scss">
.approval-search-container {
//
background: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
margin-bottom: 16px;
border: 1px solid #e8e8e8;
.search-form {
.arco-form-item {
margin-bottom: 0;
@ -211,6 +219,61 @@ watch(() => props.loading, (newVal) => {
.arco-select,
.arco-picker {
border-radius: 4px;
//
.arco-input-inner {
color: #333 !important;
font-weight: 500;
}
//
.arco-input-inner::placeholder {
color: #666 !important;
font-weight: 400;
}
//
.arco-select-view-input {
color: #333 !important;
font-weight: 500;
}
//
.arco-select-view-placeholder {
color: #666 !important;
font-weight: 400;
}
//
.arco-picker-input {
color: #333 !important;
font-weight: 500;
}
//
.arco-picker-input::placeholder {
color: #666 !important;
font-weight: 400;
}
//
&:focus-within {
.arco-input-inner,
.arco-select-view-input,
.arco-picker-input {
color: #000 !important;
font-weight: 600;
}
}
//
&:hover {
.arco-input-inner,
.arco-select-view-input,
.arco-picker-input {
color: #000 !important;
}
}
}
.arco-btn {

View File

@ -781,6 +781,22 @@ onMounted(() => {
color: var(--color-text-4);
font-style: italic;
}
//
.approval-search-container {
background: #ffffff;
padding: 16px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 16px;
.search-form {
.arco-form-item-label {
color: #333 !important;
font-weight: 600;
}
}
}
}
//