From ced1e6c6a11cd2d114f19e49f7e86d2c3f0b0b46 Mon Sep 17 00:00:00 2001 From: Kathy Lussier Date: Fri, 10 Feb 2017 21:31:50 -0500 Subject: [PATCH] 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 --- Open-ILS/web/css/skin/default/selfcheck.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.43.2