Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various updates including Query Suggestions #28

Merged
merged 13 commits into from
Feb 28, 2025
9 changes: 6 additions & 3 deletions src/connector.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Search UI: Styles for Query suggestion List "combobox", TO BE eventually replaced by GCWeb reference implementation codebase
*/
.rough-experimental.query-suggestions {
.query-suggestions {
background-color: white;
border-bottom: 1px solid #ccc;
border-left: 1px solid #ccc;
Expand All @@ -15,10 +15,13 @@
width: 100%;
z-index: 60;
}
.rough-experimental.query-suggestions li {
.query-suggestions li {
padding: 5px 10px;
}
.rough-experimental.query-suggestions li:hover {
.query-suggestions li:hover {
background-color: #ddd;
}
.query-suggestions .selected-suggestion {
background-color: #ddd;
}

Expand Down
Loading