From: Josh Stompro Date: Tue, 16 Aug 2016 15:06:31 +0000 (-0500) Subject: LP#1494748 - Increase the size of checkboxes in self check X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fstompro%2Flp1494748_selfcheck_fine_button_checkboxes;p=working%2FEvergreen.git LP#1494748 - Increase the size of checkboxes in self check This makes checkboxes easier to use for touch screen users. 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 23bd38819f..fe9fcb2ede 100644 --- a/Open-ILS/web/css/skin/default/selfcheck.css +++ b/Open-ILS/web/css/skin/default/selfcheck.css @@ -218,3 +218,14 @@ A { box-shadow: inset 0 0 8px #ADADB2; border-radius: 12px; } + +input[type=checkbox] +{ + /* Double-sized Checkboxes */ + -ms-transform: scale(2.3); /* IE */ + -moz-transform: scale(2.3); /* FF */ + -webkit-transform: scale(2.3); /* Safari and Chrome */ + -o-transform: scale(2.3); /* Opera */ + padding: 10px; + transform: scale(2.3); +}