workaround for webkit's +/~ bug reverted

This commit is contained in:
Vadim Makeev 2011-04-29 10:06:47 +04:00
parent 99229b717c
commit e41a294ecf
1 changed files with 1 additions and 5 deletions

View File

@ -1,9 +1,6 @@
@import url(reset.css); @import url(reset.css);
@import url(fonts.css); @import url(fonts.css);
/* Fix for +/~ selectors in webkit */
@-webkit-keyframes bugfix { from { padding:0; } to { padding:0; } }
BODY { BODY {
overflow:hidden; overflow:hidden;
background:#000; background:#000;
@ -340,7 +337,6 @@ A {
-webkit-border-radius:0.2em; -webkit-border-radius:0.2em;
-moz-border-radius:0.2em; -moz-border-radius:0.2em;
border-radius:0.2em; border-radius:0.2em;
-webkit-animation:bugfix infinite 1s;
} }
.progress DIV { .progress DIV {
position:absolute; position:absolute;
@ -358,5 +354,5 @@ A {
transition:width 0.2s linear; transition:width 0.2s linear;
} }
.progress-off:target ~ .progress { .progress-off:target ~ .progress {
visibility:hidden; display:none;
} }