Skip to content

Commit 26eb9ac

Browse files
committed
fix(ui): remove rounded candidate list styling
1 parent d737fa9 commit 26eb9ac

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/frontend/manual_search.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ impl SimpleComponent for ManualSearchModel {
190190

191191
let results = gtk::ListBox::new();
192192
results.set_selection_mode(gtk::SelectionMode::Single);
193-
results.add_css_class("boxed-list");
193+
results.add_css_class("manual-search-results");
194194

195195
let preview = gtk::TextView::builder()
196196
.editable(false)

src/frontend/manual_search/view.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ pub(super) fn install_css() {
6363
crate::frontend::style::install(
6464
r#"
6565
.manual-search-bar, .manual-search-footer { padding: 12px; }
66+
.manual-search-results, .manual-search-results > row { border-radius: 0; }
6667
.manual-result-row { padding: 10px 12px; }
6768
"#,
6869
);

0 commit comments

Comments
 (0)