Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-menu-button/README.md

Issue 1561893002: [Polymer] Roll polymer to latest version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update grdp Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v1_0/components-chromium/paper-menu-button/README.md
diff --git a/third_party/polymer/v1_0/components-chromium/paper-menu-button/README.md b/third_party/polymer/v1_0/components-chromium/paper-menu-button/README.md
index dba0ff1326003cee36cdbafb40298eace517ab67..d75caccf782929cf687c29360eeb9ee1f7b81690 100644
--- a/third_party/polymer/v1_0/components-chromium/paper-menu-button/README.md
+++ b/third_party/polymer/v1_0/components-chromium/paper-menu-button/README.md
@@ -1,4 +1,65 @@
-paper-menu-button
-=================
-An element that allows composing a trigger and content as a dropdown menu.
+<!---
+
+This README is automatically generated from the comments in these files:
+paper-menu-button-animations.html paper-menu-button.html
+
+Edit those files, and our readme bot will duplicate them over here!
+Edit this file, and the bot will squash your changes :)
+
+-->
+
+[![Build Status](https://travis-ci.org/PolymerElements/paper-menu-button.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-menu-button)
+
+_[Demo and API Docs](https://elements.polymer-project.org/elements/paper-menu-button)_
+
+
+##&lt;paper-menu-button&gt;
+
+
+Material design: [Dropdown buttons](https://www.google.com/design/spec/components/buttons.html#buttons-dropdown-buttons)
+
+`paper-menu-button` allows one to compose a designated "trigger" element with
+another element that represents "content", to create a dropdown menu that
+displays the "content" when the "trigger" is clicked.
+
+The child element with the class `dropdown-trigger` will be used as the
+"trigger" element. The child element with the class `dropdown-content` will be
+used as the "content" element.
+
+The `paper-menu-button` is sensitive to its content's `iron-select` events. If
+the "content" element triggers an `iron-select` event, the `paper-menu-button`
+will close automatically.
+
+Example:
+
+ <paper-menu-button>
+ <paper-icon-button icon="menu" class="dropdown-trigger"></paper-icon-button>
+ <paper-menu class="dropdown-content">
+ <paper-item>Share</paper-item>
+ <paper-item>Settings</paper-item>
+ <paper-item>Help</paper-item>
+ </paper-menu>
+ </paper-menu-button>
+
+### Styling
+
+The following custom properties and mixins are also available for styling:
+
+Custom property | Description | Default
+----------------|-------------|----------
+`--paper-menu-button-dropdown-background` | Background color of the paper-menu-button dropdown | `#fff`
+`--paper-menu-button` | Mixin applied to the paper-menu-button | `{}`
+`--paper-menu-button-disabled` | Mixin applied to the paper-menu-button when disabled | `{}`
+`--paper-menu-button-dropdown` | Mixin applied to the paper-menu-button dropdown | `{}`
+`--paper-menu-button-content` | Mixin applied to the paper-menu-button content | `{}`
+
+
+
+<!-- No docs for <paper-menu-grow-height-animation> found. -->
+
+<!-- No docs for <paper-menu-grow-width-animation> found. -->
+
+<!-- No docs for <paper-menu-shrink-height-animation> found. -->
+
+<!-- No docs for <paper-menu-shrink-width-animation> found. -->

Powered by Google App Engine
This is Rietveld 408576698