aboutsummaryrefslogtreecommitdiff
path: root/js/components/layout/document-entry.reel/document-entry.css
diff options
context:
space:
mode:
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}