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 --- .../layout/document-entry.reel/document-entry.css | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 js/components/layout/document-entry.reel/document-entry.css (limited to 'js/components/layout/document-entry.reel/document-entry.css') diff --git a/js/components/layout/document-entry.reel/document-entry.css b/js/components/layout/document-entry.reel/document-entry.css new file mode 100644 index 00000000..ce173cd6 --- /dev/null +++ b/js/components/layout/document-entry.reel/document-entry.css @@ -0,0 +1,38 @@ +/* + 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. +
*/ + +.documentEntry span +{ + /*display: inline-block;*/ + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; /* Causes ... to appear ?? */ + max-width:100px; +} + +.documentEntry img { + opacity: 0.5; /* 50% */ + padding-left: 5px; + width: 12px; + height: 12px; + -webkit-transition: opacity 0.2s ease; + transition: opacity 0.2s ease; +} + +.documentEntry:hover, +.documentEntry:active, +.documentEntry.activeTab { + /*background-color: #7f7f7f; *//* rgb(127, 127, 127); */ +} + +.documentEntry img:hover { + opacity: 1.0; /* 100% */ +} + + +.documentEntry span.dirty:before{ + content: "*"; +} -- cgit v1.2.3