Skip to content

Commit ba3cd73

Browse files
committed
local styles used
1 parent 70cec63 commit ba3cd73

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

client/packages/lowcoder-design/src/components/Search.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,21 @@ const SearchInput = styled(Input)`
1313
font-size: 13px;
1414
user-select: none;
1515
overflow: hidden;
16+
background-color: #fdfdfd;
17+
color: #000;
1618
1719
&:focus {
1820
outline: none;
1921
box-shadow: 0 0 0 3px #daecfc;
2022
}
23+
&:hover {
24+
background-color: #fdfdfd;
25+
color: #000;
26+
}
27+
&:focus-within {
28+
background-color: #fdfdfd;
29+
color: #000;
30+
}
2131
`;
2232
const SearchDiv = styled.div<{ error?: boolean }>`
2333
height: 32px;

client/packages/lowcoder/src/comps/comps/textInputComp/textInputConstants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ export function getStyle(style: InputLikeStyleType, labelStyle?: LabelStyleType)
250250
font-style:${style.fontStyle};
251251
text-transform:${style.textTransform};
252252
text-decoration:${style.textDecoration};
253-
// background-color: ${style.background};
253+
background-color: ${style.background};
254254
border-color: ${style.border};
255255
256256
&:focus,

0 commit comments

Comments
 (0)