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/menu/menu-item.reel/menu-item.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/menu/menu-item.reel/menu-item.css')
-rw-r--r-- | js/components/menu/menu-item.reel/menu-item.css | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/js/components/menu/menu-item.reel/menu-item.css b/js/components/menu/menu-item.reel/menu-item.css new file mode 100644 index 00000000..e5ceda5c --- /dev/null +++ b/js/components/menu/menu-item.reel/menu-item.css | |||
@@ -0,0 +1,72 @@ | |||
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 | .menuItem .menuName { | ||
8 | font-family: 'Droid Sans', sans-serif; | ||
9 | font-size: 10pt; | ||
10 | padding: 3px 12px 3px 8px; | ||
11 | text-shadow : 1px 1px 1px #000000; | ||
12 | } | ||
13 | |||
14 | .menuItem:hover { | ||
15 | background-color: #7f7f7f; | ||
16 | } | ||
17 | |||
18 | .menubg .subEntries { | ||
19 | top: 0%; | ||
20 | left: 100%; | ||
21 | width: auto; | ||
22 | white-space:nowrap; | ||
23 | } | ||
24 | |||
25 | .itemSeparator:hover { | ||
26 | background-color: #474747; | ||
27 | } | ||
28 | |||
29 | .separator{ | ||
30 | width:100%; | ||
31 | height:2px; | ||
32 | position: relative; | ||
33 | border: 1px groove #474747 ; | ||
34 | border-radius: 2px; | ||
35 | background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#474747), to(#cccccc)); | ||
36 | opacity: 0.5; | ||
37 | } | ||
38 | |||
39 | .disabled { | ||
40 | opacity: 0.5; | ||
41 | } | ||
42 | |||
43 | .disabled:hover { | ||
44 | background-color: #474747; | ||
45 | } | ||
46 | |||
47 | .menubg .check { | ||
48 | float:left; | ||
49 | background-image: url(../../../../images/menu/checkmark.png); | ||
50 | background-repeat: no-repeat; | ||
51 | background-position: center; | ||
52 | width: 10px; | ||
53 | height: 15px; | ||
54 | opacity: 0; | ||
55 | } | ||
56 | |||
57 | .menubg.submenu .rightArrow { | ||
58 | float: right; | ||
59 | background-image:url('../../../../images/menu/arrow.png'); | ||
60 | background-repeat: no-repeat; | ||
61 | background-position: center; | ||
62 | width: 10px; | ||
63 | height: 15px; | ||
64 | position: absolute; | ||
65 | right:4px; | ||
66 | top: 5px; | ||
67 | margin-left: 8px; | ||
68 | } | ||
69 | |||
70 | .subEntries.subMenu .rightArrow { | ||
71 | opacity: 0; | ||
72 | } \ No newline at end of file | ||