From ac1f126e176b7a183aa03eb6b5953a027ca621c8 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 28 Nov 2013 15:46:28 +0400 Subject: [PATCH] added range styling... Signed-off-by: Alex A. Naanou --- ui/experiments/editor.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/ui/experiments/editor.html b/ui/experiments/editor.html index 69346550..b5fd2aa3 100755 --- a/ui/experiments/editor.html +++ b/ui/experiments/editor.html @@ -27,6 +27,25 @@ div > span:first-child { width: 100px; } +/* range syling... */ +input[type='range'] { + -webkit-appearance: none !important; + background: silver; + height: 4px; + border: solid 1px gray; + border-radius: 2px; +} +input[type='range']::-webkit-slider-thumb { + -webkit-appearance: none !important; + background: white; + height: 15px; + width: 15px; + border: solid 1px gray; + border-radius: 50%; +} + + +