loleaflet/css/mobilewizard.css | 2 +- loleaflet/src/control/Control.JSDialogBuilder.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit 81542ebaeef533a4f0271c37d3a49fcf9fb3df7f Author: Szymon Kłos <[email protected]> AuthorDate: Wed Jul 8 13:57:05 2020 +0200 Commit: Szymon Kłos <[email protected]> CommitDate: Thu Jul 9 12:02:21 2020 +0200 mobile wizard: use listbox for rotation field Change-Id: If96654e787ebb16c0918d35e60ece42995af2410 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/98419 Tested-by: Jenkins Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> diff --git a/loleaflet/src/control/Control.JSDialogBuilder.js b/loleaflet/src/control/Control.JSDialogBuilder.js index 41ad87376..38ac8710a 100644 --- a/loleaflet/src/control/Control.JSDialogBuilder.js +++ b/loleaflet/src/control/Control.JSDialogBuilder.js @@ -1415,7 +1415,8 @@ L.Control.JSDialogBuilder = L.Control.extend({ data.id === 'fontnamecombobox' || data.id === 'fontsizecombobox' || data.id === 'fontsize' || - data.id === 'FontBox') { + data.id === 'FontBox' || + data.id === 'rotation') { builder._listboxControl(parentContainer, data, builder); } else if (data.id === 'searchterm' || data.id === 'replaceterm') { commit 6e09157a3cb50f1370f0d787cbfcfa6d4d160c6a Author: Szymon Kłos <[email protected]> AuthorDate: Wed Jul 8 13:24:45 2020 +0200 Commit: Szymon Kłos <[email protected]> CommitDate: Thu Jul 9 12:02:14 2020 +0200 mobile wizard: spinfield controls visible on smaller screens On smaller screens value field was too long and plus/minus buttons were under the field Change-Id: If88db5702970f73bcc544497544777a3e0455762 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/98418 Tested-by: Jenkins Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> diff --git a/loleaflet/css/mobilewizard.css b/loleaflet/css/mobilewizard.css index 00e915a6c..d11ced002 100644 --- a/loleaflet/css/mobilewizard.css +++ b/loleaflet/css/mobilewizard.css @@ -697,7 +697,7 @@ a.leaflet-control-zoom-in { #DecrementIndent + input:disabled{display: none;} div#mobile-wizard-content input[type=number]{ height: 46px; - width: 42%; + width: 37%; padding-left: 8%; border: none; -moz-appearance: textfield; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
