diff --git a/docs/dropdowns.html b/docs/dropdowns.html index 7538fb3d6..bf1f18217 100644 --- a/docs/dropdowns.html +++ b/docs/dropdowns.html @@ -50,7 +50,7 @@
Dropdowns can be created using the markup below. You can use a <button> or an <a> as a trigger. Dropdown indicators (i.e. carets) are added for you. Menu items are simply <a> elements. Dividers are simply <hr> elements.
Note the class names used for the main container, the trigger, and the menu. Additionally, menu items can be disabled by adding the disabled class. Menu items can also be given a checked state using the checked class.
To disable a dropdown entirely, add the disabled property to the dropdown trigger if it’s a button. If it’s a link, add the disabled class instead.
To disable a dropdown entirely, add the disabled property to the dropdown trigger if it’s a button. If it’s a link, add the disabled class instead. When a dropdown is activated, it will receive the active class and the menu will show.
<div class="dropdown">
<button type="button" class="dropdown-trigger">Dropdown</button>
<div class="dropdown-menu">
diff --git a/source/docs/dropdowns.md b/source/docs/dropdowns.md
index 9fc43dc99..d0dd243bc 100644
--- a/source/docs/dropdowns.md
+++ b/source/docs/dropdowns.md
@@ -10,7 +10,7 @@ Dropdowns can be created using the markup below. You can use a `