| Index: third_party/polymer/v1_0/components-chromium/paper-item/paper-item.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-item/paper-item.html b/third_party/polymer/v1_0/components-chromium/paper-item/paper-item.html
|
| index 2f4ceb98623701f50779e2a14905526532210147..5d7c30764257edd6bdea40091b9963c574b09c92 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-item/paper-item.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-item/paper-item.html
|
| @@ -37,6 +37,18 @@ focus as well by setting its tabindex to -1.
|
| <paper-item raised>Polymer Project</paper-item>
|
| </a>
|
|
|
| +If you are concerned about performance and want to use `paper-item` in a `paper-listbox`
|
| +with many items, you can just use a native `button` with the `paper-item` class
|
| +applied (provided you have correctly included the shared styles):
|
| +
|
| + <style is="custom-style" include="paper-item-shared-styles"></style>
|
| +
|
| + <paper-listbox>
|
| + <button class="paper-item" role="option">Inbox</button>
|
| + <button class="paper-item" role="option">Starred</button>
|
| + <button class="paper-item" role="option">Sent mail</button>
|
| + </paper-listbox>
|
| +
|
| ### Styling
|
|
|
| The following custom properties and mixins are available for styling:
|
|
|