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

fix(style): input bgcolor in table header #754

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading