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 --- node_modules/montage/ui/button.reel/button.css | 55 ++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 node_modules/montage/ui/button.reel/button.css (limited to 'node_modules/montage/ui/button.reel/button.css') diff --git a/node_modules/montage/ui/button.reel/button.css b/node_modules/montage/ui/button.reel/button.css new file mode 100644 index 00000000..f0f3ad60 --- /dev/null +++ b/node_modules/montage/ui/button.reel/button.css @@ -0,0 +1,55 @@ +/* + 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-button { + outline: none; + box-sizing: border-box; + font-size: 12px; + height: 2.5em; + min-width: 2.5em; + margin: 0 2px; + padding: 0 1em; + vertical-align: middle; + border-radius: 3px; + border: 1px solid #b3b3b3; + background-color: #f2f2f2; + cursor: pointer; +} + +/* States */ +.montage-button:hover { + background-color: #fff; + color: #000; +} + +.montage-button:active { + background-color: #e5e5e5; +} + +.montage-button:focus { + border-color: #7f7f7f; +} + + +/* ButtonGroup ------------------------------- */ + +.montage-buttonGroup { + padding-left: 5px; /* Add the negative margin back */ +} + +.montage-buttonGroup > .montage-button { + margin: 0; + border-radius: 0; + margin-left: -5px; /* Remove the space inbetween */ +} + +.montage-buttonGroup > .montage-button:first-child { + border-radius: 3px 0 0 3px; +} + +.montage-buttonGroup > .montage-button:last-child { + border-radius: 0 3px 3px 0; +} \ No newline at end of file -- cgit v1.2.3