Skip to content

Commit 8a149b8

Browse files
committed
browser support bug fix
1 parent 7765596 commit 8a149b8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

css/stylesheet.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -562,24 +562,24 @@ button[disabled] {
562562

563563
/* Firefox < 16 */
564564
@-moz-keyframes line_highlight {
565-
from { background: rgba(255, 0, 0, .1); }
566-
to { background: rgba(255, 0, 0, .3); }
565+
from { background: rgba(0, 174, 255, 0.1); }
566+
to { background: rgba(0, 174, 255, 0.4); }
567567
}
568568

569569
/* Safari, Chrome and Opera > 12.1 */
570570
@-webkit-keyframes line_highlight {
571-
from { background: rgba(255, 0, 0, .1); }
572-
to { background: rgba(255, 0, 0, .3); }
571+
from { background: rgba(0, 174, 255, 0.1); }
572+
to { background: rgba(0, 174, 255, 0.4); }
573573
}
574574

575575
/* Internet Explorer */
576576
@-ms-keyframes line_highlight {
577-
from { background: rgba(255, 0, 0, .1); }
578-
to { background: rgba(255, 0, 0, .3); }
577+
from { background: rgba(0, 174, 255, 0.1); }
578+
to { background: rgba(0, 174, 255, 0.4); }
579579
}
580580

581581
/* Opera < 12.1 */
582582
@-o-keyframes line_highlight {
583-
from { background: rgba(255, 0, 0, .1); }
584-
to { background: rgba(255, 0, 0, .3); }
583+
from { background: rgba(0, 174, 255, 0.1); }
584+
to { background: rgba(0, 174, 255, 0.4); }
585585
}

0 commit comments

Comments
 (0)