Skip to content

Commit 80e6272

Browse files
update style and package.json
1 parent b498705 commit 80e6272

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,18 @@
66
"keywords": [
77
"react",
88
"search",
9+
"custom search",
910
"search input",
1011
"autocomplete",
12+
"custom autocomplete",
1113
"suggestions",
14+
"custom suggestions",
1215
"customizable",
1316
"responsive",
1417
"UI component",
1518
"react component",
1619
"dynamic suggestions",
20+
"custom suggestions",
1721
"react search",
1822
"popup suggestions",
1923
"user experience",
@@ -102,6 +106,7 @@
102106
"dist",
103107
"lib",
104108
"src",
109+
"style",
105110
"index.d.ts",
106111
"__tests__",
107112
"CHANGELOG.md"

style/react-custom-search-list.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
.rc-search-suggestions-popper {
2626
z-index: 2;
2727
background: white;
28-
border: 1px solid lightgray;
2928
height: auto;
3029
overflow-y: auto;
3130
overflow-x: auto;
@@ -56,6 +55,9 @@
5655
.panel {
5756
border-color: transparent;
5857
}
58+
.panel .rc-search-suggestions-popper {
59+
border: 1px solid lightgray;
60+
}
5961
.panel [data-popper-placement|=bottom] {
6062
margin-top: -1px !important;
6163
border-top: none;

style/react-custom-search-list.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style/scss/modules/_base.scss

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
.rc-search-suggestions-popper {
2525
z-index: 2;
2626
background: white;
27-
border: 1px solid lightgray;
2827
height: auto;
2928
overflow-y: auto;
3029
overflow-x: auto;
@@ -60,6 +59,9 @@
6059
@mixin panel {
6160
.panel {
6261
border-color: transparent;
62+
.rc-search-suggestions-popper {
63+
border: 1px solid lightgray;
64+
}
6365
[data-popper-placement|='bottom'] {
6466
margin-top: -1px !important;
6567
border-top: none;

0 commit comments

Comments
 (0)