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.
This commit is contained in:
Jonas Jenwald 2020-08-23 16:21:07 +02:00
parent 7df8aa34a5
commit 7762205c52

View File

@ -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);