From 8fe92b94ce5e1e2857d088752d94e19db7e3d8a8 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Sun, 17 Jun 2012 22:31:44 -0700 Subject: montage v11 merge into ninja Signed-off-by: Valerio Virgillito --- .../montage/ui/input-range.reel/input-range.css | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 node_modules/montage/ui/input-range.reel/input-range.css (limited to 'node_modules/montage/ui/input-range.reel/input-range.css') diff --git a/node_modules/montage/ui/input-range.reel/input-range.css b/node_modules/montage/ui/input-range.reel/input-range.css new file mode 100644 index 00000000..fa5279eb --- /dev/null +++ b/node_modules/montage/ui/input-range.reel/input-range.css @@ -0,0 +1,42 @@ +/* + This file contains proprietary software owned by Motorola Mobility, Inc.
+ No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
+ (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. +
*/ + +.montage-inputRange { + position: relative; + display: inline-block; + box-sizing: border-box; + width: 100px; + height: 6px; + border-radius: 3px; + border: 1px solid #b3b3b3; + background-color: #d9d9d9; +} + +.montage-inputRange-thumb { + position: absolute; + font-size: inherit; + box-sizing: border-box; + margin: -8px 0 0 -1px; + border-radius: 10px; + width: 20px; + height: 20px; + left: 0; + top: 0; + border: 1px solid #b3b3b3; + background-color: #f2f2f2; + cursor: pointer; +} + +/* States */ +.montage-inputRange-thumb:hover { + background-color: #fff; +} +.montage-inputRange-thumb:active { + background-color: #e5e5e5; +} +.montage-inputRange-thumb:focus { + border-color: #7f7f7f; +} \ No newline at end of file -- cgit v1.2.3