diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/components/ui/icon-list-basic/icon.reel/icon.css | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/components/ui/icon-list-basic/icon.reel/icon.css')
-rw-r--r-- | js/components/ui/icon-list-basic/icon.reel/icon.css | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/js/components/ui/icon-list-basic/icon.reel/icon.css b/js/components/ui/icon-list-basic/icon.reel/icon.css new file mode 100644 index 00000000..ca591aff --- /dev/null +++ b/js/components/ui/icon-list-basic/icon.reel/icon.css | |||
@@ -0,0 +1,42 @@ | |||
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 | .icon{ | ||
8 | width:90px; | ||
9 | height:80px; | ||
10 | display: inline; | ||
11 | float: left; | ||
12 | -moz-border-radius: 8px; | ||
13 | border-radius: 8px; | ||
14 | margin-bottom: 5px; | ||
15 | margin-right: 5px; | ||
16 | background-color: #5f5f5f; | ||
17 | } | ||
18 | |||
19 | .icon .selected{ | ||
20 | /*background-color: #d1d1d1;*/ | ||
21 | background-color: #919191; | ||
22 | } | ||
23 | |||
24 | .icon .iconImg{ | ||
25 | width:35px; | ||
26 | height:35px; | ||
27 | /*border: 1px solid #000000; | ||
28 | box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);*/ | ||
29 | margin-left: 20px; | ||
30 | margin-top: 10px; | ||
31 | } | ||
32 | |||
33 | .icon .iconLabel{ | ||
34 | margin-top:8px; | ||
35 | white-space: nowrap; | ||
36 | text-overflow:ellipsis; | ||
37 | line-height:15px; | ||
38 | overflow: hidden; | ||
39 | max-width:80%; | ||
40 | text-align: center; | ||
41 | padding-left: 2px; | ||
42 | } \ No newline at end of file | ||