From 6290903cbfe6d46eb20eb8538936ef6fe0d9bcc1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 23 Feb 2020 08:12:49 +0530 Subject: [PATCH] Fix #1864311 [[Enhancement] Make the symbols better aligned with the search field on the Content server](https://bugs.launchpad.net/calibre/+bug/1864311) --- src/pyj/read_book/search.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/search.pyj b/src/pyj/read_book/search.pyj index a3ce46f81d..94f5ac2d04 100644 --- a/src/pyj/read_book/search.pyj +++ b/src/pyj/read_book/search.pyj @@ -18,7 +18,7 @@ add_extra_css(def(): sel = '.' + CLASS_NAME style = build_rule(sel, text_align='right', user_select='none') sel += ' > div ' - style += build_rule(sel, display='inline-flex', pointer_events='auto', background_color=get_color('window-background'), padding='1ex') + style += build_rule(sel, display='inline-flex', align_items='center', pointer_events='auto', background_color=get_color('window-background'), padding='1ex') return style )