From b89a7ee8b956c96a1dcee995ea840feddc5d4b27 Mon Sep 17 00:00:00 2001 From: Pierre Frisch Date: Thu, 22 Dec 2011 07:25:50 -0800 Subject: First commit of Ninja to ninja-internal Signed-off-by: Valerio Virgillito --- js/components/popup.reel/css/popup.scss | 52 +++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100755 js/components/popup.reel/css/popup.scss (limited to 'js/components/popup.reel/css/popup.scss') diff --git a/js/components/popup.reel/css/popup.scss b/js/components/popup.reel/css/popup.scss new file mode 100755 index 00000000..782165a4 --- /dev/null +++ b/js/components/popup.reel/css/popup.scss @@ -0,0 +1,52 @@ +@charset "UTF-8"; +/* + 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. +
*/ + +$grey_dark: #292929; +$grey_light: #494949; + +.default_popup +{ + //MUST HAVE TO ALLOW FOR SIZE AJUSTMENTS + position: absolute; + width: auto; + float: left; + + //TEXT STYLES + font-family: 'Droid Sans', sans-serif; + color: #FFF; + + //BACKGROUND AND CONTAINER + background: $grey_light; + border: 1px solid $grey_dark; + border-radius: 8px; + padding: 8px; + box-shadow: 0px 0px 8px rgba(0, 0, 0, .8); + pointerEvents: auto; +} + +.default_popup .content +{ + overflow: auto; + float: left; +} + +.default_popup .tooltip +{ + position: absolute; + overflow: hidden; +} + +.default_popup .tooltip span +{ + -webkit-transform:rotate(45deg); + width: 12px; + height: 12px; + margin: 3px; + display: block; + background: $grey_light; + border: 1px solid $grey_dark; +} \ No newline at end of file -- cgit v1.2.3