| OLD | NEW |
| (Empty) |
| 1 <!-- | |
| 2 @license | |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE | |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS | |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS | |
| 7 Code distributed by Google as part of the polymer project is also | |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS | |
| 9 --> | |
| 10 | |
| 11 <link rel="import" href="../polymer/polymer.html"> | |
| 12 <link rel="import" href="../iron-icon/iron-icon.html"> | |
| 13 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html"> | |
| 14 <link rel="import" href="../paper-styles/default-theme.html"> | |
| 15 <link rel="import" href="../paper-behaviors/paper-button-behavior.html"> | |
| 16 <link rel="import" href="../paper-behaviors/paper-inky-focus-behavior.html"> | |
| 17 <link rel="import" href="../paper-ripple/paper-ripple.html"> | |
| 18 | |
| 19 <!-- | |
| 20 Material Design: <a href="http://www.google.com/design/spec/components/buttons.h
tml">Buttons</a> | |
| 21 | |
| 22 `paper-icon-button` is a button with an image placed at the center. When the use
r touches | |
| 23 the button, a ripple effect emanates from the center of the button. | |
| 24 | |
| 25 `paper-icon-button` includes a default icon set. Use `icon` to specify which ic
on | |
| 26 from the icon set to use. | |
| 27 | |
| 28 <paper-icon-button icon="menu"></paper-icon-button> | |
| 29 | |
| 30 See [`iron-iconset`](#iron-iconset) for more information about | |
| 31 how to use a custom icon set. | |
| 32 | |
| 33 Example: | |
| 34 | |
| 35 <link href="path/to/iron-icons/iron-icons.html" rel="import"> | |
| 36 | |
| 37 <paper-icon-button icon="favorite"></paper-icon-button> | |
| 38 <paper-icon-button src="star.png"></paper-icon-button> | |
| 39 | |
| 40 ###Styling | |
| 41 | |
| 42 Style the button with CSS as you would a normal DOM element. If you are using th
e icons | |
| 43 provided by `iron-icons`, they will inherit the foreground color of the button. | |
| 44 | |
| 45 /* make a red "favorite" button */ | |
| 46 <paper-icon-button icon="favorite" style="color: red;"></paper-icon-button> | |
| 47 | |
| 48 By default, the ripple is the same color as the foreground at 25% opacity. You m
ay | |
| 49 customize the color using this selector: | |
| 50 | |
| 51 /* make #my-button use a blue ripple instead of foreground color */ | |
| 52 #my-button::shadow #ripple { | |
| 53 color: blue; | |
| 54 } | |
| 55 | |
| 56 The opacity of the ripple is not customizable via CSS. | |
| 57 | |
| 58 The following custom properties and mixins are available for styling: | |
| 59 | |
| 60 Custom property | Description | Default | |
| 61 ----------------|-------------|---------- | |
| 62 `--paper-icon-button-disabled-text` | The color of the disabled button | `--prim
ary-text-color` | |
| 63 `--paper-icon-button-ink-color` | Selected/focus ripple color | `--default-prima
ry-color` | |
| 64 `--paper-icon-button` | Mixin for a button | `{}` | |
| 65 `--paper-icon-button-disabled` | Mixin for a disabled button | `{}` | |
| 66 | |
| 67 @group Paper Elements | |
| 68 @element paper-icon-button | |
| 69 @demo demo/index.html | |
| 70 --> | |
| 71 | |
| 72 <dom-module id="paper-icon-button"> | |
| 73 <style> | |
| 74 | |
| 75 :host { | |
| 76 display: inline-block; | |
| 77 position: relative; | |
| 78 padding: 8px; | |
| 79 outline: none; | |
| 80 -webkit-tap-highlight-color: rgba(0,0,0,0); | |
| 81 -webkit-user-select: none; | |
| 82 -moz-user-select: none; | |
| 83 -ms-user-select: none; | |
| 84 user-select: none; | |
| 85 cursor: pointer; | |
| 86 z-index: 0; | |
| 87 | |
| 88 @apply(--paper-icon-button); | |
| 89 } | |
| 90 | |
| 91 :host #ink { | |
| 92 color: var(--paper-icon-button-ink-color, --primary-text-color); | |
| 93 opacity: 0.6; | |
| 94 } | |
| 95 | |
| 96 :host([disabled]) { | |
| 97 color: var(--paper-icon-button-disabled-text, --disabled-text-color); | |
| 98 pointer-events: none; | |
| 99 cursor: auto; | |
| 100 @apply(--paper-icon-button-disabled); | |
| 101 } | |
| 102 </style> | |
| 103 <template> | |
| 104 <paper-ripple id="ink" class="circle" center></paper-ripple> | |
| 105 <iron-icon id="icon" src="[[src]]" icon="[[icon]]" alt$="[[alt]]"></iron-ico
n> | |
| 106 </template> | |
| 107 </dom-module> | |
| 108 <script> | |
| 109 Polymer({ | |
| 110 is: 'paper-icon-button', | |
| 111 | |
| 112 hostAttributes: { | |
| 113 role: 'button', | |
| 114 tabindex: '0' | |
| 115 }, | |
| 116 | |
| 117 behaviors: [ | |
| 118 Polymer.PaperInkyFocusBehavior | |
| 119 ], | |
| 120 | |
| 121 properties: { | |
| 122 /** | |
| 123 * The URL of an image for the icon. If the src property is specified, | |
| 124 * the icon property should not be. | |
| 125 */ | |
| 126 src: { | |
| 127 type: String | |
| 128 }, | |
| 129 | |
| 130 /** | |
| 131 * Specifies the icon name or index in the set of icons available in | |
| 132 * the icon's icon set. If the icon property is specified, | |
| 133 * the src property should not be. | |
| 134 */ | |
| 135 icon: { | |
| 136 type: String | |
| 137 }, | |
| 138 | |
| 139 /** | |
| 140 * Specifies the alternate text for the button, for accessibility. | |
| 141 */ | |
| 142 alt: { | |
| 143 type: String, | |
| 144 observer: "_altChanged" | |
| 145 } | |
| 146 }, | |
| 147 | |
| 148 _altChanged: function(newValue, oldValue) { | |
| 149 var label = this.getAttribute('aria-label'); | |
| 150 | |
| 151 // Don't stomp over a user-set aria-label. | |
| 152 if (!label || oldValue == label) { | |
| 153 this.setAttribute('aria-label', newValue); | |
| 154 } | |
| 155 } | |
| 156 }); | |
| 157 </script> | |
| OLD | NEW |