diff options
Diffstat (limited to 'js/ui/menu/menu-item.reel/menu-item.css')
-rwxr-xr-x | js/ui/menu/menu-item.reel/menu-item.css | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/js/ui/menu/menu-item.reel/menu-item.css b/js/ui/menu/menu-item.reel/menu-item.css new file mode 100755 index 00000000..f3683492 --- /dev/null +++ b/js/ui/menu/menu-item.reel/menu-item.css | |||
@@ -0,0 +1,149 @@ | |||
1 | /* <copyright> | ||
2 | Copyright (c) 2012, Motorola Mobility LLC. | ||
3 | All Rights Reserved. | ||
4 | |||
5 | Redistribution and use in source and binary forms, with or without | ||
6 | modification, are permitted provided that the following conditions are met: | ||
7 | |||
8 | * Redistributions of source code must retain the above copyright notice, | ||
9 | this list of conditions and the following disclaimer. | ||
10 | |||
11 | * Redistributions in binary form must reproduce the above copyright notice, | ||
12 | this list of conditions and the following disclaimer in the documentation | ||
13 | and/or other materials provided with the distribution. | ||
14 | |||
15 | * Neither the name of Motorola Mobility LLC nor the names of its | ||
16 | contributors may be used to endorse or promote products derived from this | ||
17 | software without specific prior written permission. | ||
18 | |||
19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
20 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
21 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
22 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
23 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
24 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
25 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
26 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
27 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
28 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
29 | POSSIBILITY OF SUCH DAMAGE. | ||
30 | </copyright> */ | ||
31 | |||
32 | .menuItem { | ||
33 | font-size: 9pt; | ||
34 | padding: 4px 8px; | ||
35 | display: block; | ||
36 | position: relative; | ||
37 | background: #474747; | ||
38 | color: white; | ||
39 | } | ||
40 | |||
41 | .menuItem:hover { | ||
42 | cursor:pointer; | ||
43 | } | ||
44 | |||
45 | .disabled { | ||
46 | opacity: 0.5; | ||
47 | } | ||
48 | |||
49 | .disabled:hover { | ||
50 | background-color: #474747; | ||
51 | } | ||
52 | |||
53 | .menuItemButton { | ||
54 | color: #f7f7f7; | ||
55 | font-family: 'Droid Sans', sans-serif; | ||
56 | text-shadow: 1px 1px 1px black; | ||
57 | display: inline; | ||
58 | outline: none; | ||
59 | box-sizing: border-box; | ||
60 | font-size: 10pt; | ||
61 | height: 18px; | ||
62 | vertical-align: middle; | ||
63 | border: 0; | ||
64 | background: none; | ||
65 | /*margin: 0 2px;*/ | ||
66 | /*padding: 0 1em;*/ | ||
67 | /*padding: 23px 12px 0px 8px;*/ | ||
68 | cursor: pointer; | ||
69 | |||
70 | padding-right: 18px; | ||
71 | } | ||
72 | |||
73 | .menuItemButton:focus { | ||
74 | -webkit-box-shadow: none; | ||
75 | |||
76 | } | ||
77 | |||
78 | .separatorContainer { | ||
79 | padding-left: 0px; | ||
80 | padding-right: 0px; | ||
81 | width: 99%; | ||
82 | } | ||
83 | |||
84 | .separatorContainer:hover { | ||
85 | background-color: #474747; | ||
86 | } | ||
87 | |||
88 | .separator{ | ||
89 | width:100%; | ||
90 | height:2px; | ||
91 | position: relative; | ||
92 | border: 1px groove #474747 ; | ||
93 | border-radius: 2px; | ||
94 | background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#474747), to(#cccccc)); | ||
95 | opacity: 0.5; | ||
96 | } | ||
97 | |||
98 | .menuItem .check { | ||
99 | float:left; | ||
100 | margin-top: 2px; | ||
101 | background-image: url(../../../../images/menu/checkmark.png); | ||
102 | background-repeat: no-repeat; | ||
103 | background-position: center; | ||
104 | width: 10px; | ||
105 | height: 15px; | ||
106 | opacity: 0; | ||
107 | } | ||
108 | |||
109 | .menuItem .checked { | ||
110 | opacity: 1; | ||
111 | } | ||
112 | |||
113 | .submenu .rightArrow { | ||
114 | float: right; | ||
115 | background-image:url('../../../../images/menu/arrow.png'); | ||
116 | background-repeat: no-repeat; | ||
117 | background-position: center; | ||
118 | width: 10px; | ||
119 | height: 15px; | ||
120 | position: absolute; | ||
121 | right:4px; | ||
122 | top: 5px; | ||
123 | margin-left: 8px; | ||
124 | } | ||
125 | |||
126 | .submenuEntries{ | ||
127 | display: none; | ||
128 | position: absolute; | ||
129 | top: 0%; | ||
130 | left: 100%; | ||
131 | margin-top: 1px; | ||
132 | margin-left: 1px; | ||
133 | float:left; | ||
134 | font-family: 'Droid Sans', sans-serif !important; | ||
135 | color: #ffffff; | ||
136 | background: #494949; | ||
137 | /*border: 1px solid #292929;*/ | ||
138 | border-bottom-right-radius: 5px; | ||
139 | border-bottom-left-radius: 5px; | ||
140 | /*border-radius: 8px;*/ | ||
141 | padding: 8px 0px 8px 0px; | ||
142 | box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.8); | ||
143 | white-space:nowrap; | ||
144 | } | ||
145 | |||
146 | .submenu .show { | ||
147 | display: block; | ||
148 | } | ||
149 | |||