forked from airlift/airline
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds the Multi-Level Pushdown Menu plugin to the website so that the navigation is much more user friendly rather than a giant unbounded list. The menu will automatically expand to the level of the page currently being viewed.
- Loading branch information
Showing
6 changed files
with
1,339 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
.multilevelpushmenu_wrapper { | ||
position: absolute; | ||
overflow: hidden; | ||
min-width: 100%; | ||
min-height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .levelHolderClass { | ||
position: absolute; | ||
overflow: hidden; | ||
top: 0; | ||
background: #6a9fb5; | ||
width: auto; | ||
min-height: 100%; | ||
zoom: 1; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .ltr { | ||
margin-left: -100%; | ||
left: 0; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .rtl { | ||
margin-right: -100%; | ||
right: 0; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .multilevelpushmenu_inactive { | ||
background: #6a9fb5; | ||
} | ||
|
||
.multilevelpushmenu_wrapper h2 { | ||
line-height: 1em; | ||
font-weight: bold; | ||
color: #1f4164; | ||
padding: 0 .4em 0 .4em; | ||
} | ||
|
||
.multilevelpushmenu_wrapper ul { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.multilevelpushmenu_wrapper li { | ||
cursor: pointer; | ||
border: 1px solid #295685; | ||
padding: .4em .4em .4em .4em; | ||
} | ||
|
||
.multilevelpushmenu_wrapper li:last-child { | ||
|
||
} | ||
|
||
.multilevelpushmenu_wrapper li:hover { | ||
background-color: #295685; | ||
} | ||
|
||
.multilevelpushmenu_wrapper a { | ||
display: block; | ||
outline: none; | ||
overflow: hidden; | ||
line-height: 1em; | ||
padding: .2em .2em; | ||
text-decoration: none; | ||
color: #fff; | ||
} | ||
|
||
.multilevelpushmenu_wrapper a:hover { | ||
color: #ffe; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .backItemClass { | ||
display: block; | ||
padding: .4em .4em .4em .4em; | ||
background: #2e6196; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .floatRight { | ||
float: right; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .floatLeft { | ||
float: left; | ||
margin-right: 5px; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .cursorPointer { | ||
cursor: pointer; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .iconSpacing_ltr { | ||
padding: 0 .4em 0 0; | ||
} | ||
|
||
.multilevelpushmenu_wrapper .iconSpacing_rtl { | ||
padding: 0 0 0 .4em; | ||
} |
Oops, something went wrong.