Skip to content

Commit 2a80285

Browse files
committed
Merge pull request algorithm-visualizer#151 from nem035/line-hlight-browsers-bug-fix
Line hlight browsers bug fix
2 parents 5e69d53 + 208ebeb commit 2a80285

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

AlgorithmVisualizer.wiki

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
}

public/algorithm_visualizer.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,8 +690,8 @@ button[disabled] {
690690

691691
/* Safari, Chrome and Opera > 12.1 */
692692
@-webkit-keyframes line_highlight {
693-
from { background: rgba(255, 0, 0, .1); }
694-
to { background: rgba(255, 0, 0, .3); }
693+
from { background: rgba(0, 174, 255, 0.1); }
694+
to { background: rgba(0, 174, 255, 0.4); }
695695
}
696696

697697
/* Internet Explorer */

public/algorithm_visualizer.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)