Index: third_party/polymer/v1_0/components-chromium/paper-icon-button/paper-icon-button.html |
diff --git a/third_party/polymer/v1_0/components-chromium/paper-icon-button/paper-icon-button.html b/third_party/polymer/v1_0/components-chromium/paper-icon-button/paper-icon-button.html |
index f040b45458e639d82e2a1cb103c63146d50443a8..00d314217dde576f147a3f5586a0b14f542f265b 100644 |
--- a/third_party/polymer/v1_0/components-chromium/paper-icon-button/paper-icon-button.html |
+++ b/third_party/polymer/v1_0/components-chromium/paper-icon-button/paper-icon-button.html |
@@ -1,11 +1,11 @@ |
<!-- |
@license |
Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE |
-The complete set of authors may be found at http://polymer.github.io/AUTHORS |
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS |
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
Code distributed by Google as part of the polymer project is also |
-subject to an additional IP rights grant found at http://polymer.github.io/PATENTS |
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
--><html><head><link rel="import" href="../polymer/polymer.html"> |
<link rel="import" href="../iron-icon/iron-icon.html"> |
<link rel="import" href="../iron-flex-layout/iron-flex-layout.html"> |
@@ -54,6 +54,7 @@ Custom property | Description | Default |
`--paper-icon-button-ink-color` | Selected/focus ripple color | `--primary-text-color` |
`--paper-icon-button` | Mixin for a button | `{}` |
`--paper-icon-button-disabled` | Mixin for a disabled button | `{}` |
+`--paper-icon-button-hover` | Mixin for button on hover | `{}` |
@group Paper Elements |
@element paper-icon-button |
@@ -96,6 +97,10 @@ Custom property | Description | Default |
cursor: auto; |
@apply(--paper-icon-button-disabled); |
} |
+ |
+ :host(:hover) { |
+ @apply(--paper-icon-button-hover); |
+ } |
iron-icon { |
--iron-icon-width: 100%; |