Fix #1864311 [[Enhancement] Make the symbols better aligned with the search field on the Content server](https://bugs.launchpad.net/calibre/+bug/1864311)

This commit is contained in:
Kovid Goyal 2020-02-23 08:12:49 +05:30
parent 18071ad9f5
commit 6290903cbf
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -18,7 +18,7 @@ add_extra_css(def():
sel = '.' + CLASS_NAME sel = '.' + CLASS_NAME
style = build_rule(sel, text_align='right', user_select='none') style = build_rule(sel, text_align='right', user_select='none')
sel += ' > div ' 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 return style
) )