Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* www.cleanrider.com - The price slider does not work
*
* the site disables pointer events on the slider and only allows them
* in -webkit-slider-thumb style which is not supported in Firefox and
*/
input[type="range"]::-moz-range-thumb {
-webkit-appearance: none;
height: 24px;
pointer-events: all;
width: 24px;
}