| 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.txt | |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | |
| 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.txt | |
| 9 --><html><head><link rel="import" href="../polymer/polymer.html"> | |
| 10 <link rel="import" href="../iron-icon/iron-icon.html"> | |
| 11 <link rel="import" href="../iron-flex-layout/classes/iron-flex-layout.html"> | |
| 12 <link rel="import" href="../paper-styles/default-theme.html"> | |
| 13 <link rel="import" href="../paper-styles/color.html"> | |
| 14 <link rel="import" href="../paper-material/paper-material.html"> | |
| 15 <link rel="import" href="../paper-ripple/paper-ripple.html"> | |
| 16 <link rel="import" href="../paper-behaviors/paper-button-behavior.html"> | |
| 17 | |
| 18 <!-- | |
| 19 Material Design: <a href="http://www.google.com/design/spec/components/buttons.h
tml">Button</a> | |
| 20 | |
| 21 `paper-fab` is a floating action button. It contains an image placed in the cent
er and | |
| 22 comes in two sizes: regular size and a smaller size by applying the attribute `m
ini`. When | |
| 23 the user touches the button, a ripple effect emanates from the center of the but
ton. | |
| 24 | |
| 25 You may import `iron-icons` to use with this element, or provide a URL to a cust
om icon. | |
| 26 See `iron-iconset` for more information about how to use a custom icon set. | |
| 27 | |
| 28 Example: | |
| 29 | |
| 30 <link href="path/to/iron-icons/iron-icons.html" rel="import"> | |
| 31 | |
| 32 <paper-fab icon="add"></paper-fab> | |
| 33 <paper-fab mini icon="favorite"></paper-fab> | |
| 34 <paper-fab src="star.png"></paper-fab> | |
| 35 | |
| 36 | |
| 37 ### Styling | |
| 38 | |
| 39 The following custom properties and mixins are available for styling: | |
| 40 | |
| 41 Custom property | Description | Default | |
| 42 ----------------|-------------|---------- | |
| 43 `--paper-fab-background` | The background color of the button | `--paper-indigo-
500` | |
| 44 `--paper-fab-disabled-background` | The background color of the button when it's
disabled | `--paper-grey-300` | |
| 45 `--paper-fab-disabled-text` | The text color of the button when it's disabled |
`--paper-grey-500` | |
| 46 `--paper-fab` | Mixin applied to the button | `{}` | |
| 47 `--paper-fab-mini` | Mixin applied to a mini button | `{}` | |
| 48 `--paper-fab-disabled` | Mixin applied to a disabled button | `{}` | |
| 49 | |
| 50 @group Paper Elements | |
| 51 @demo demo/index.html | |
| 52 | |
| 53 --> | |
| 54 | |
| 55 </head><body><dom-module id="paper-fab"> | |
| 56 <style> | |
| 57 | |
| 58 :host { | |
| 59 display: inline-block; | |
| 60 position: relative; | |
| 61 outline: none; | |
| 62 -moz-user-select: none; | |
| 63 -ms-user-select: none; | |
| 64 -webkit-user-select: none; | |
| 65 user-select: none; | |
| 66 cursor: pointer; | |
| 67 | |
| 68 box-sizing: border-box; | |
| 69 min-width: 0; | |
| 70 width: 56px; | |
| 71 height: 56px; | |
| 72 background: var(--paper-fab-background, --paper-indigo-500); | |
| 73 color: var(--text-primary-color); | |
| 74 border-radius: 50%; | |
| 75 padding: 16px; | |
| 76 | |
| 77 z-index: 0; | |
| 78 | |
| 79 @apply(--paper-fab); | |
| 80 } | |
| 81 | |
| 82 :host([mini]) { | |
| 83 width: 40px; | |
| 84 height: 40px; | |
| 85 padding: 8px; | |
| 86 | |
| 87 @apply(--paper-fab-mini); | |
| 88 } | |
| 89 | |
| 90 :host([disabled]) { | |
| 91 color: var(--paper-fab-disabled-text, --paper-grey-500); | |
| 92 background: var(--paper-fab-disabled-background, --paper-grey-300); | |
| 93 @apply(--paper-fab-disabled); | |
| 94 } | |
| 95 | |
| 96 paper-material { | |
| 97 border-radius: inherit; | |
| 98 } | |
| 99 </style> | |
| 100 <template> | |
| 101 <paper-ripple></paper-ripple> | |
| 102 <paper-material class="content fit flex layout vertical center-center" eleva
tion="[[elevation]]" animated=""> | |
| 103 <iron-icon id="icon" src="[[src]]" icon="[[icon]]"></iron-icon> | |
| 104 </paper-material> | |
| 105 </template> | |
| 106 </dom-module> | |
| 107 <script src="paper-fab-extracted.js"></script></body></html> | |
| OLD | NEW |