From: Kathy Lussier Date: Sat, 11 Feb 2017 02:31:50 +0000 (-0500) Subject: LP#1494748: Decrease the input size on Firefox by a smidge X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ced1e6c6a11cd2d114f19e49f7e86d2c3f0b0b46;p=contrib%2FConifer.git LP#1494748: Decrease the input size on Firefox by a smidge The larger scale works for the input works well in Chrome, but came across as too large in blurry in Firefox. Decreasing the Firefox size by a smidge so that they still appear larger but don't become blurry. Firefox only seemed to recognize the last transform, regardless of prefix, so I moved the one intended for Firefox lower in the CSS list. Signed-off-by: Kathy Lussier Signed-off-by: Josh Stompro --- diff --git a/Open-ILS/web/css/skin/default/selfcheck.css b/Open-ILS/web/css/skin/default/selfcheck.css index fe9fcb2ede..ad36885f66 100644 --- a/Open-ILS/web/css/skin/default/selfcheck.css +++ b/Open-ILS/web/css/skin/default/selfcheck.css @@ -227,5 +227,5 @@ input[type=checkbox] -webkit-transform: scale(2.3); /* Safari and Chrome */ -o-transform: scale(2.3); /* Opera */ padding: 10px; - transform: scale(2.3); + transform: scale(1.5); }