diff options
author | Armen Kesablyan | 2012-02-13 11:59:19 -0800 |
---|---|---|
committer | Armen Kesablyan | 2012-02-13 11:59:19 -0800 |
commit | 90d0c8c0e98d062c628c061fe5765ce991fda409 (patch) | |
tree | 9780e9dcf475bf319f3cacc1a1ad52fcf9f133af /_scss/imports/scss/_MenuUI.scss | |
parent | 8110e01dc5093ac6baf621103dcaa5f769e5be92 (diff) | |
parent | e142611e22718b1f1d1696902ad9161ec5f33f98 (diff) | |
download | ninja-90d0c8c0e98d062c628c061fe5765ce991fda409.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal
Conflicts:
css/ninja.css
js/stage/stage.reel/stage.html
js/tools/TextTool.js
node_modules/labs/rich-text-editor.reel/rich-text-editor.css
node_modules/labs/rich-text-editor.reel/rich-text-editor.html
node_modules/labs/rich-text-editor.reel/rich-text-editor.js
node_modules/labs/rich-text-editor.reel/rich-text-resizer.js
node_modules/labs/rich-text-editor.reel/rich-text-sanitizer.js
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to '_scss/imports/scss/_MenuUI.scss')
-rw-r--r-- | _scss/imports/scss/_MenuUI.scss | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/_scss/imports/scss/_MenuUI.scss b/_scss/imports/scss/_MenuUI.scss deleted file mode 100644 index e1fb149a..00000000 --- a/_scss/imports/scss/_MenuUI.scss +++ /dev/null | |||
@@ -1,75 +0,0 @@ | |||
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 | // MenuUI.scss | ||
8 | // Styles governing the main dropdown menu. | ||
9 | // Note that colors and font definitions go in | ||
10 | // _scss/themes/themename/_colors.scss and _scss/themes/themename/_fonts.scss | ||
11 | |||
12 | .menuBar { | ||
13 | width:100%; | ||
14 | border-style: solid; | ||
15 | border-width: 1px; | ||
16 | height: 22px; | ||
17 | color: $color-menu-text; | ||
18 | background: $color-menu-bg; | ||
19 | border-color: $color-menu-border; | ||
20 | } | ||
21 | |||
22 | .menuBar ul { | ||
23 | list-style: none; | ||
24 | margin: 0; | ||
25 | padding: 0; | ||
26 | float: left; | ||
27 | cursor: default; | ||
28 | } | ||
29 | |||
30 | .menuBar li { | ||
31 | font-size: 9pt; | ||
32 | padding: 4px 10px; | ||
33 | display: block; | ||
34 | position: relative; | ||
35 | background : $color-menu-bg; | ||
36 | color : $color-menu-text; | ||
37 | } | ||
38 | |||
39 | .menuBar li li { | ||
40 | width: 10em; | ||
41 | } | ||
42 | .menuBar li:hover { | ||
43 | background : $color-menu-hilite-bg; | ||
44 | color : $color-menu-hilite-text; | ||
45 | } | ||
46 | |||
47 | .menuBar li:active { | ||
48 | background : $color-menu-active-bg; | ||
49 | } | ||
50 | |||
51 | // Styles for positioning and display | ||
52 | Supports fly-out of sub-menus two levels deep only | ||
53 | |||
54 | .menuBar ul ul { | ||
55 | position: absolute; | ||
56 | z-index: 500; | ||
57 | } | ||
58 | |||
59 | .menuBar ul ul ul { | ||
60 | position: absolute; | ||
61 | top: 0; | ||
62 | left: 100%; | ||
63 | } | ||
64 | |||
65 | nav.menuBar ul ul, | ||
66 | nav.menuBar ul li:hover ul ul, | ||
67 | nav.menuBar ul ul li:hover ul ul { | ||
68 | display: none; | ||
69 | } | ||
70 | |||
71 | nav.menuBar ul li:hover ul, | ||
72 | nav.menuBar ul ul li:hover ul, | ||
73 | nav.menuBar ul ul ul li:hover ul { | ||
74 | display: block; | ||
75 | } \ No newline at end of file | ||