mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
Resolves #815. Initial implementation of menus is complete.
This commit is contained in:
parent
e75ede0fca
commit
944b5be391
|
@ -4,35 +4,49 @@ title: Menus
|
|||
group: material-design
|
||||
---
|
||||
|
||||
Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdowns/), but these are also known as menus in the [Material Design specification](https://www.google.com/design/spec/components/menus.html#menus-specs).
|
||||
|
||||
## Contents
|
||||
|
||||
* Will be replaced with the ToC, excluding the "Contents" header
|
||||
{:toc}
|
||||
|
||||
Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdowns/), but these are also known as menus in the [Material Design specification](https://www.google.com/design/spec/components/menus.html#menus-specs).
|
||||
|
||||
## Styles
|
||||
|
||||
{% example html %}
|
||||
<!-- icon -->
|
||||
<!-- icon with buttons -->
|
||||
<div class="dropdown">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="ex1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
An <code>.mdb-btn-icon</code>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
|
||||
An <code>.mdb-btn-icon</code> with menu buttons
|
||||
<div class="dropdown-menu" aria-labelledby="ex1">
|
||||
<button class="dropdown-item" type="button">Action</button>
|
||||
<button class="dropdown-item disabled" type="button">Another action</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- icon with links -->
|
||||
<div class="dropdown">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="ex2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
An <code>.mdb-btn-icon</code> with menu links
|
||||
<div class="dropdown-menu" aria-labelledby="ex2">
|
||||
<a class="dropdown-item" href="#">Regular link</a>
|
||||
<a class="dropdown-item disabled" href="#">Disabled link</a>
|
||||
<a class="dropdown-item" href="#">Another link</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- fab-sm -->
|
||||
<div class="dropdown">
|
||||
<button class="btn mdb-btn-fab mdb-btn-fab-sm btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-fab mdb-btn-fab-sm btn-secondary dropdown-toggle" type="button" id="ex3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
An <code>.mdb-btn-fab-sm</code>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu" aria-labelledby="ex3">
|
||||
<button class="dropdown-item" type="button">Action</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
</div>
|
||||
|
@ -40,15 +54,27 @@ Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdown
|
|||
|
||||
<!-- fab -->
|
||||
<div class="dropdown">
|
||||
<button class="btn mdb-btn-fab btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-fab btn-secondary dropdown-toggle" type="button" id="ex4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
An <code>.mdb-btn-fab</code>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu" aria-labelledby="ex4">
|
||||
<button class="dropdown-item" type="button">Action</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- default btn -->
|
||||
<div class="dropdown open">
|
||||
<button class="btn btn-secondary dropdown-toggle" type="button" id="buttonMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Dropdown
|
||||
</button>
|
||||
<div class="dropdown-menu" aria-labelledby="buttonMenu1">
|
||||
<a class="dropdown-item" href="#">Action</a>
|
||||
<a class="dropdown-item" href="#">Another action</a>
|
||||
<a class="dropdown-item" href="#">Something else here</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endexample %}
|
||||
|
||||
|
||||
|
@ -57,13 +83,13 @@ Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdown
|
|||
### Lower left side
|
||||
{% example html %}
|
||||
<div class="dropdown open">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="ll1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu" aria-labelledby="ll1">
|
||||
<button class="dropdown-item" type="button">Action</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
<button class="dropdown-item" type="button disabled">Disabled action</button>
|
||||
<button class="dropdown-item disabled" type="button">Disabled action</button>
|
||||
<div class="dropdown-divider"> </div>
|
||||
<a class="dropdown-item" href="#">Separated link</a>
|
||||
</div>
|
||||
|
@ -73,13 +99,13 @@ Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdown
|
|||
### Lower right side
|
||||
{% example html %}
|
||||
<div class="dropdown open pull-xs-right">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="lr1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="lr1">
|
||||
<button class="dropdown-item" type="button">Action</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
<button class="dropdown-item" type="button disabled">Disabled action</button>
|
||||
<button class="dropdown-item disabled" type="button">Disabled action</button>
|
||||
<div class="dropdown-divider"> </div>
|
||||
<a class="dropdown-item" href="#">Separated link</a>
|
||||
</div>
|
||||
|
@ -89,13 +115,13 @@ Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdown
|
|||
### Top left side
|
||||
{% example html %}
|
||||
<div class="dropdown open">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="tl1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-top-left" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu dropdown-menu-top-left" aria-labelledby="tl1">
|
||||
<button class="dropdown-item" type="button">Action</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
<button class="dropdown-item" type="button disabled">Disabled action</button>
|
||||
<button class="dropdown-item disabled" type="button">Disabled action</button>
|
||||
<div class="dropdown-divider"> </div>
|
||||
<a class="dropdown-item" href="#">Separated link</a>
|
||||
</div>
|
||||
|
@ -105,13 +131,13 @@ Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdown
|
|||
### Top right side
|
||||
{% example html %}
|
||||
<div class="dropdown open pull-xs-right">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="tr1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-top-right" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu dropdown-menu-top-right" aria-labelledby="tr1">
|
||||
<button class="dropdown-item" type="button">Action</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
<button class="dropdown-item" type="button disabled">Disabled action</button>
|
||||
<button class="dropdown-item disabled" type="button">Disabled action</button>
|
||||
<div class="dropdown-divider"> </div>
|
||||
<a class="dropdown-item" href="#">Separated link</a>
|
||||
</div>
|
||||
|
@ -126,10 +152,10 @@ Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdown
|
|||
|
||||
{% example html %}
|
||||
<div class="dropdown open pull-xs-right">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="mw1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="mw1">
|
||||
<button class="dropdown-item" type="button">A</button>
|
||||
<button class="dropdown-item" type="button">B</button>
|
||||
</div>
|
||||
|
@ -141,10 +167,10 @@ Bootstrap users know these as [dropdowns]({{ site.baseurl }}/components/dropdown
|
|||
|
||||
{% example html %}
|
||||
<div class="dropdown open pull-xs-right">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<button class="btn mdb-btn-icon btn-secondary dropdown-toggle" type="button" id="mw2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="material-icons">more_vert</i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenu2">
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="mw2">
|
||||
<button class="dropdown-item" type="button">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ut malesuada elit. Proin tristique, lorem eu vehicula congue, lectus ipsum porta quam, eget rutrum sapien turpis et libero.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ut malesuada elit. Proin tristique, lorem eu vehicula congue, lectus ipsum porta quam, eget rutrum sapien turpis et libero.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ut malesuada elit. Proin tristique, lorem eu vehicula congue, lectus ipsum porta quam, eget rutrum sapien turpis et libero.</button>
|
||||
<button class="dropdown-item" type="button">Another action</button>
|
||||
</div>
|
||||
|
|
|
@ -1,42 +1,16 @@
|
|||
// Menus https://www.google.com/design/spec/components/menus.html#menus-specs
|
||||
// Dropdown buttons (mobile and desktop) https://www.google.com/design/spec/components/buttons.html#buttons-dropdown-buttons
|
||||
|
||||
.dropdown {
|
||||
%menu-bottom-left {
|
||||
top: 100%;
|
||||
left: 0;
|
||||
transform-origin: 0 0;
|
||||
}
|
||||
|
||||
.dropdown-toggle {
|
||||
|
||||
&.mdb-btn-icon,
|
||||
&.mdb-btn-fab {
|
||||
// remove the dropdown icon
|
||||
&::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
~ .dropdown-menu {
|
||||
&.dropdown-menu-top-left,
|
||||
&.dropdown-menu-top-right {
|
||||
bottom: $mdb-btn-icon-size; // push up the bottom of the menu the height of the button
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.mdb-btn-fab-sm {
|
||||
~ .dropdown-menu {
|
||||
&.dropdown-menu-top-left,
|
||||
&.dropdown-menu-top-right {
|
||||
bottom: $mdb-btn-fab-size-sm; // push up the bottom of the menu the height of the button
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.mdb-btn-icon {
|
||||
~ .dropdown-menu {
|
||||
// collapse some spacing
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
%menu-bottom-right {
|
||||
right: 0;
|
||||
left: auto;
|
||||
transform-origin: 100% 0;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
|
@ -45,7 +19,7 @@
|
|||
padding: .5rem 0;
|
||||
border: 0;
|
||||
opacity: 0;
|
||||
transition: transform $menu-expand-duration $mdb-animation-curve-default, opacity $menu-fade-duration $mdb-animation-curve-default;
|
||||
transition: transform $mdb-menu-expand-duration $mdb-animation-curve-default, opacity $mdb-menu-fade-duration $mdb-animation-curve-default;
|
||||
transform: scale(0);
|
||||
transform-origin: 0 0;
|
||||
will-change: transform;
|
||||
|
@ -57,10 +31,17 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
// Default the alignment on the button to bottom right
|
||||
//@extend %menu-bottom-right;
|
||||
// FIXME: bootstrap alignment issue - https://github.com/twbs/bootstrap/issues/18852
|
||||
// FIXME: once the bug is fixed, want to default origin of menu open to the right of standard buttons
|
||||
|
||||
&.dropdown-menu-left {
|
||||
@extend %menu-bottom-left;
|
||||
}
|
||||
|
||||
&.dropdown-menu-right {
|
||||
right: 0;
|
||||
left: auto;
|
||||
transform-origin: 100% 0;
|
||||
@extend %menu-bottom-right;
|
||||
}
|
||||
|
||||
&.dropdown-menu-top-left {
|
||||
|
@ -122,3 +103,43 @@
|
|||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
|
||||
.dropdown {
|
||||
|
||||
.dropdown-toggle {
|
||||
|
||||
&.mdb-btn-icon,
|
||||
&.mdb-btn-fab {
|
||||
// remove the dropdown icon
|
||||
&::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
~ .dropdown-menu {
|
||||
&.dropdown-menu-top-left,
|
||||
&.dropdown-menu-top-right {
|
||||
bottom: $mdb-btn-icon-size; // push up the bottom of the menu the height of the button
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.mdb-btn-fab-sm {
|
||||
~ .dropdown-menu {
|
||||
&.dropdown-menu-top-left,
|
||||
&.dropdown-menu-top-right {
|
||||
bottom: $mdb-btn-fab-size-sm; // push up the bottom of the menu the height of the button
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.mdb-btn-icon {
|
||||
~ .dropdown-menu {
|
||||
// collapse some spacing
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Default align button menus on the right
|
||||
}
|
||||
|
|
|
@ -2,4 +2,3 @@
|
|||
@import "plugins/plugin-snackbarjs";
|
||||
@import "plugins/plugin-nouislider";
|
||||
@import "plugins/plugin-selectize";
|
||||
@import "plugins/plugin-dropdownjs";
|
||||
|
|
|
@ -136,7 +136,3 @@ $mdb-animation-curve-linear-out-slow-in: cubic-bezier(0, 0, 0.2, 1) !default;
|
|||
$mdb-animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default;
|
||||
$mdb-animation-curve-default: $mdb-animation-curve-fast-out-slow-in !default;
|
||||
|
||||
|
||||
// Menu
|
||||
$menu-expand-duration: 0.3s !default;
|
||||
$menu-fade-duration: 0.2s !default;
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
.dropdownjs::after {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 5px;
|
||||
font-family: "Material Icons";
|
||||
font-size: 25px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
color: #757575;
|
||||
pointer-events: none;
|
||||
|
||||
// bring in the material icon font and icon by code
|
||||
content: "\e5c5"; // found here: https://github.com/google/material-design-icons/search?utf8=%E2%9C%93&q=arrow_drop_down
|
||||
}
|
|
@ -15,3 +15,9 @@ $mdb-menu-item-padding-right-md: 1.5rem !default;
|
|||
$mdb-menu-item-padding-left-md: 1.5rem !default;
|
||||
|
||||
|
||||
// Menu
|
||||
$mdb-menu-expand-duration: 0.3s !default;
|
||||
$mdb-menu-fade-duration: 0.2s !default;
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user