From c44e4ca7a22220ebcc1beeef4963727e9f49be99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Checa?= Date: Mon, 1 Feb 2016 11:51:10 +0100 Subject: [PATCH] Input range adapted for IE10 --- src/scss/cdb-components/forms/sliders.scss | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/scss/cdb-components/forms/sliders.scss b/src/scss/cdb-components/forms/sliders.scss index 9006edb..3b509ad 100644 --- a/src/scss/cdb-components/forms/sliders.scss +++ b/src/scss/cdb-components/forms/sliders.scss @@ -117,4 +117,27 @@ border-radius: $baseSize / 2; background: $cBlue; content: ''; +} + +.CDB-Range::-ms-track { + height: $baseSize / 4; + margin: $baseSize 0; + border-radius: $baseSize / 2; + background: $cMainLine; + color: transparent; + border: transparent; +} + +.CDB-Range::-ms-thumb { + position: absolute; + top: -6px; + right: -6px; + left: -6px; + width: $baseSize + 4; + height: $baseSize + 4; + border: 1px solid $cBlue; + border-radius: 50%; + background: $cWhite; + content: ''; + z-index: 1; } \ No newline at end of file