causeway-standard-theme
Version:
65 lines (60 loc) • 1.69 kB
HTML
<section>
<a id="menus-three-line"></a>
<header class="content-header">
<h1 class="title">
Three Line Menu
</h1>
</header>
<p>
A three line menu is a <a href="/docs/components/menus.html#menus-dropdown">dropdown</a> with the additional class of <code>"three-line-menu"</code> added to the surround. It is an in-line item and should be either used as such or changed to a block level element in the application CSS.
</p>
<div>
<div class="dropdown three-line-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown">
</a>
<ul class="dropdown-menu">
<li>
<a href="#">
Dropdown 1
</a>
</li>
<li>
<a href="#">
Dropdown 2
</a>
</li>
<li>
<a href="#">
Dropdown 3
</a>
</li>
</ul>
</div>
</div>
<br/>
<pre>
<code>
<div class="dropdown three-line-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown">
</a>
<ul class="dropdown-menu">
<li>
<a href="#">
Dropdown 1
</a>
</li>
<li>
<a href="#">
Dropdown 2
</a>
</li>
<li>
<a href="#">
Dropdown 3
</a>
</li>
</ul>
</div>
</code>
</pre>
</section>