Skip to content

Commit 4ec34be

Browse files
authored
Merge pull request #152 from nem035/remove-vendor-prefixes
Remove browser vendor prefixes from css
2 parents 4d9838b + 0106307 commit 4ec34be

File tree

3 files changed

+11
-51
lines changed

3 files changed

+11
-51
lines changed

css/stylesheet.css

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ a {
2626

2727
*:not(input) {
2828
-webkit-touch-callout: none;
29-
-webkit-user-select: none;
30-
-moz-user-select: none;
31-
-ms-user-select: none;
32-
-o-user-select: none;
3329
user-select: none;
3430
}
3531

@@ -391,7 +387,6 @@ pre {
391387
}
392388

393389
.fa-spin-faster {
394-
-webkit-animation: fa-spin 1s infinite ease-in-out;
395390
animation: fa-spin 1s infinite ease-in-out;
396391
}
397392

@@ -548,38 +543,10 @@ button[disabled] {
548543
width: 100% !important;
549544
left: 0 !important;
550545

551-
-webkit-animation: line_highlight .1s;
552-
-moz-animation: line_highlight .1s;
553-
-ms-animation: line_highlight .1s;
554-
-o-animation: line_highlight .1s;
555546
animation: line_highlight .1s;
556547
}
557548

558549
@keyframes line_highlight {
559550
from { background: rgba(0, 174, 255, 0.1); }
560551
to { background: rgba(0, 174, 255, 0.4); }
561552
}
562-
563-
/* Firefox < 16 */
564-
@-moz-keyframes line_highlight {
565-
from { background: rgba(0, 174, 255, 0.1); }
566-
to { background: rgba(0, 174, 255, 0.4); }
567-
}
568-
569-
/* Safari, Chrome and Opera > 12.1 */
570-
@-webkit-keyframes line_highlight {
571-
from { background: rgba(0, 174, 255, 0.1); }
572-
to { background: rgba(0, 174, 255, 0.4); }
573-
}
574-
575-
/* Internet Explorer */
576-
@-ms-keyframes line_highlight {
577-
from { background: rgba(0, 174, 255, 0.1); }
578-
to { background: rgba(0, 174, 255, 0.4); }
579-
}
580-
581-
/* Opera < 12.1 */
582-
@-o-keyframes line_highlight {
583-
from { background: rgba(0, 174, 255, 0.1); }
584-
to { background: rgba(0, 174, 255, 0.4); }
585-
}

public/algorithm_visualizer.css

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,9 @@ a {
144144
*:not(input) {
145145
-webkit-touch-callout: none;
146146
-webkit-user-select: none;
147-
-moz-user-select: none;
148-
-ms-user-select: none;
149-
-o-user-select: none;
150-
user-select: none;
147+
-moz-user-select: none;
148+
-ms-user-select: none;
149+
user-select: none;
151150
}
152151

153152
.btn {
@@ -509,7 +508,7 @@ pre {
509508

510509
.fa-spin-faster {
511510
-webkit-animation: fa-spin 1s infinite ease-in-out;
512-
animation: fa-spin 1s infinite ease-in-out;
511+
animation: fa-spin 1s infinite ease-in-out;
513512
}
514513

515514
.mtbl-wrapper {
@@ -678,22 +677,16 @@ button[disabled] {
678677
left: 0 !important;
679678

680679
-webkit-animation: line_highlight .1s;
681-
animation: line_highlight .1s;
680+
681+
animation: line_highlight .1s;
682682
}
683683

684-
@keyframes line_highlight {
684+
@-webkit-keyframes line_highlight {
685685
from { background: rgba(0, 174, 255, 0.1); }
686686
to { background: rgba(0, 174, 255, 0.4); }
687687
}
688688

689-
/* Firefox < 16 */
690-
691-
/* Safari, Chrome and Opera > 12.1 */
692-
@-webkit-keyframes line_highlight {
693-
from { background: rgba(0, 174, 255, 0.1); }
694-
to { background: rgba(0, 174, 255, 0.4); }
689+
@keyframes line_highlight {
690+
from { background: rgba(0, 174, 255, 0.1); }
691+
to { background: rgba(0, 174, 255, 0.4); }
695692
}
696-
697-
/* Internet Explorer */
698-
699-
/* Opera < 12.1 */

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)