From 329197902e563ca03b1fba665be8316bb6ab38de Mon Sep 17 00:00:00 2001 From: junkpad92 Date: Mon, 3 Nov 2014 18:56:23 +0100 Subject: [PATCH] Fix Safari checkbox-bug If checkbox is focused (clicking in the checkbox) checkbox shifts downward. I think: Only in Safari on Yosemite. Other browsers not affected. --- templates/Sparkle/assets/css/main.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/Sparkle/assets/css/main.css b/templates/Sparkle/assets/css/main.css index 01af76a1..6108b59f 100644 --- a/templates/Sparkle/assets/css/main.css +++ b/templates/Sparkle/assets/css/main.css @@ -651,6 +651,8 @@ input[type="checkbox"] { padding:0; margin:0 5px 0 0; vertical-align:middle; + /* Fix Safari-Bug */ + height: auto; } select { @@ -1040,4 +1042,4 @@ div.right { .grid-offset-1-2 { margin-left: 50%; -} \ No newline at end of file +}