We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bd5b65 commit ff1175fCopy full SHA for ff1175f
src/lib/slider/slider.scss
@@ -68,7 +68,11 @@ md-slider {
68
69
.md-slider-ticks {
70
background: repeating-linear-gradient(to right, $md-slider-tick-color,
71
- $md-slider-tick-color $md-slider-tick-size, transparent 0, transparent) repeat-x;
+ $md-slider-tick-color $md-slider-tick-size, transparent 0, transparent) repeat;
72
+ /* Firefox doesn't draw the gradient correctly with 'to right'
73
+ (see https://bugzilla.mozilla.org/show_bug.cgi?id=1314319). */
74
+ background: -moz-repeating-linear-gradient(0.0001deg, $md-slider-tick-color,
75
76
height: $md-slider-track-thickness;
77
width: 100%;
78
opacity: 0;
0 commit comments