From 7762205c5281292e0ac1f807a312285ef34670a0 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 23 Aug 2020 16:21:07 +0200 Subject: [PATCH] Reduce the leading padding for the `numPages` span (PR 11077 follow-up) Currently there's enough leading padding that the `numPages` span feels somewhat "disconnected" from the `pageNumber` input, which seems unfortunate when they contain related state. --- web/viewer.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/viewer.css b/web/viewer.css index a15b08f9a..bccfd5d9a 100644 --- a/web/viewer.css +++ b/web/viewer.css @@ -1249,6 +1249,13 @@ html[dir='rtl'] .toolbarField[type=checkbox] { cursor: default; } +html[dir='ltr'] #numPages.toolbarLabel { + padding-left: 2px; +} +html[dir='rtl'] #numPages.toolbarLabel { + padding-right: 2px; +} + #thumbnailView { position: absolute; width: calc(100% - 60px);