aboutsummaryrefslogtreecommitdiff
path: root/js/components/layout/document-entry.reel/document-entry.css
diff options
context:
space:
mode:
authorPierre Frisch2011-12-22 07:25:50 -0800
committerValerio Virgillito2012-01-27 11:18:17 -0800
commitb89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch)
tree0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/components/layout/document-entry.reel/document-entry.css
parent2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff)
downloadninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/components/layout/document-entry.reel/document-entry.css')
-rw-r--r--js/components/layout/document-entry.reel/document-entry.css38
1 files changed, 38 insertions, 0 deletions
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 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.documentEntry span
8{
9 /*display: inline-block;*/
10 white-space: nowrap;
11 overflow: hidden;
12 text-overflow: ellipsis; /* Causes ... to appear ?? */
13 max-width:100px;
14}
15
16.documentEntry img {
17 opacity: 0.5; /* 50% */
18 padding-left: 5px;
19 width: 12px;
20 height: 12px;
21 -webkit-transition: opacity 0.2s ease;
22 transition: opacity 0.2s ease;
23}
24
25.documentEntry:hover,
26.documentEntry:active,
27.documentEntry.activeTab {
28 /*background-color: #7f7f7f; *//* rgb(127, 127, 127); */
29}
30
31.documentEntry img:hover {
32 opacity: 1.0; /* 100% */
33}
34
35
36.documentEntry span.dirty:before{
37 content: "*";
38}