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

Side by Side Diff: polymer_1.0.4/bower_components/paper-icon-button/paper-icon-button.html

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 5 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 unified diff | Download patch
OLDNEW
(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-user-select: none;
81 -moz-user-select: none;
82 -ms-user-select: none;
83 user-select: none;
84 cursor: pointer;
85 z-index: 0;
86
87 @apply(--paper-icon-button);
88 }
89
90 :host #ink {
91 color: var(--paper-icon-button-ink-color, --primary-text-color);
92 opacity: 0.6;
93 }
94
95 :host([disabled]) {
96 color: var(--paper-icon-button-disabled-text, --disabled-text-color);
97 pointer-events: none;
98 cursor: auto;
99 @apply(--paper-icon-button-disabled);
100 }
101 </style>
102 <template>
103 <paper-ripple id="ink" class="circle" center></paper-ripple>
104 <iron-icon id="icon" src="[[src]]" icon="[[icon]]" alt$="[[alt]]"></iron-ico n>
105 </template>
106 </dom-module>
107 <script>
108 Polymer({
109 is: 'paper-icon-button',
110
111 hostAttributes: {
112 role: 'button',
113 tabindex: '0'
114 },
115
116 behaviors: [
117 Polymer.PaperInkyFocusBehavior
118 ],
119
120 properties: {
121 /**
122 * The URL of an image for the icon. If the src property is specified,
123 * the icon property should not be.
124 */
125 src: {
126 type: String
127 },
128
129 /**
130 * Specifies the icon name or index in the set of icons available in
131 * the icon's icon set. If the icon property is specified,
132 * the src property should not be.
133 */
134 icon: {
135 type: String
136 },
137
138 /**
139 * Specifies the alternate text for the button, for accessibility.
140 */
141 alt: {
142 type: String,
143 observer: "_altChanged"
144 }
145 },
146
147 _altChanged: function(newValue, oldValue) {
148 var label = this.getAttribute('aria-label');
149
150 // Don't stomp over a user-set aria-label.
151 if (!label || oldValue == label) {
152 this.setAttribute('aria-label', newValue);
153 }
154 }
155 });
156 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698