diff --git a/src/pyj/book_list/details_list.pyj b/src/pyj/book_list/details_list.pyj index 3651852b63..9d86c5e159 100644 --- a/src/pyj/book_list/details_list.pyj +++ b/src/pyj/book_list/details_list.pyj @@ -35,7 +35,6 @@ def details_list_css(): ans += f'{extra_data} {{ text-align: right }}' narrow_style = f'{s} iframe {{ display: none }} {top} {{ flex-direction: column }} {extra_data} {{ text-align: left; margin-top: 1ex }}' ans += f'@media (max-width: 450px) {{ {narrow_style} }}' - print(ans) s += ' iframe' # To enable clicking anywhere on the item to load book details to work, we # have to set pointer-events: none diff --git a/src/pyj/book_list/views.pyj b/src/pyj/book_list/views.pyj index 4e20865fbf..7692b1a032 100644 --- a/src/pyj/book_list/views.pyj +++ b/src/pyj/book_list/views.pyj @@ -413,7 +413,7 @@ def create_mode_panel(container_id): def create_more_actions_panel(container_id): container = document.getElementById(container_id) - create_top_bar(container, title=_('Sort books by…'), action=back, icon='close') + create_top_bar(container, title=_('More actions…'), action=back, icon='close') items = [ create_item(_('Book list mode'), subtitle=_('Change how the list of books is displayed'), action=def(): show_panel('book_list^choose_mode', replace=True)