Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 pkg/web_app/lib/src/widget/completion/widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void create(HTMLElement element, Map<String, String> options) {
data: data,
);
// Add dropdown after the <input>
document.body!.after(dropdown);
document.body!.append(dropdown);
});
}

Expand Down
8 changes: 4 additions & 4 deletions pkg/web_css/lib/src/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@
cursor: pointer;
white-space: nowrap;
padding: 0px 3px;
}

>.completion-option-selected {
background-color: var(--pub-selected-bgColor);

&:hover {
background-color: var(--pub-selected-bgColor);
}
}

>.completion-option-selected {
background-color: var(--pub-selected-bgColor);
}
}
Loading