Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix(style): input bgcolor in table header
Browse files Browse the repository at this point in the history
  • Loading branch information
hibig committed Mar 12, 2024
1 parent 205baa8 commit f26d810
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/assets/style/variable.less
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ body {
.arco-picker,
.arco-textarea-wrapper {
font-size: var(--font-size-small);
background-color: var(--color-bg-transparent);
background-color: var(--color-white-1);
border: 1px solid var(--color-border-input);
transition: var(--input-transition);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,11 @@
<a-select
v-model="queryParams.projectName"
:options="projectList"
style="min-width: 150px; max-width: 180px"
style="
min-width: 150px;
max-width: 180px;
background-color: var(--color-white-2);
"
:placeholder="$t('applications.projects.table.name')"
allow-clear
allow-search
Expand Down Expand Up @@ -143,7 +147,11 @@
<template #title>
<a-select
v-model="queryParams.matchingRuleName"
style="min-width: 150px; max-width: 180px"
style="
min-width: 150px;
max-width: 180px;
background-color: var(--color-white-2);
"
allow-clear
allow-search
:placeholder="$t('resource.definition.detail.matchRule')"
Expand Down

0 comments on commit f26d810

Please sign in to comment.