From b3a800c187fee5178aea129f46eb1f36a70e5bfe Mon Sep 17 00:00:00 2001 From: Roman Komarov Date: Thu, 28 Apr 2011 06:57:13 -0700 Subject: [PATCH] =?UTF-8?q?Workaround=20for=20webkit's=20E:target=20~=20E?= =?UTF-8?q?=20{=20=E2=80=A6=20}=20bug.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/projection.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) mode change 100755 => 100644 styles/projection.css diff --git a/styles/projection.css b/styles/projection.css old mode 100755 new mode 100644 index 3656ca1..d4690c2 --- a/styles/projection.css +++ b/styles/projection.css @@ -1,6 +1,9 @@ @import url(reset.css); @import url(fonts.css); +/* Fix for +/~ selectors in webkit */ +@-webkit-keyframes bugfix { from { padding:0; } to { padding:0; } } + BODY { overflow:hidden; background:#000; @@ -337,6 +340,7 @@ A { -webkit-border-radius:0.2em; -moz-border-radius:0.2em; border-radius:0.2em; + -webkit-animation:bugfix infinite 1s; } .progress DIV { position:absolute; @@ -354,5 +358,5 @@ A { transition:width 0.2s linear; } .progress-off:target ~ .progress { - display:none; + visibility:hidden; } \ No newline at end of file