| Index: polymer_1.0.4/bower_components/paper-ripple/demo/index.html
|
| diff --git a/polymer_0.5.4/bower_components/paper-ripple/demo.html b/polymer_1.0.4/bower_components/paper-ripple/demo/index.html
|
| similarity index 66%
|
| copy from polymer_0.5.4/bower_components/paper-ripple/demo.html
|
| copy to polymer_1.0.4/bower_components/paper-ripple/demo/index.html
|
| index 9fc053d13bab2ac626e1090d2a69c4caac10754a..365eb3e5b91980ec837ac597e24ec66f384d258d 100644
|
| --- a/polymer_0.5.4/bower_components/paper-ripple/demo.html
|
| +++ b/polymer_1.0.4/bower_components/paper-ripple/demo/index.html
|
| @@ -1,45 +1,45 @@
|
| <!--
|
| - @license
|
| - Copyright (c) 2014 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.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.txt
|
| +@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.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.txt
|
| -->
|
| <!doctype html>
|
| <html>
|
| <head>
|
| - <title>paper-ripple</title>
|
| -
|
| + <title>paper-ripple demo</title>
|
| +
|
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
| <meta name="mobile-web-app-capable" content="yes">
|
| <meta name="apple-mobile-web-app-capable" content="yes">
|
| -
|
| - <script src="../webcomponentsjs/webcomponents.js"></script>
|
| -
|
| - <link rel="import" href="../core-icons/core-icons.html">
|
| - <link rel="import" href="paper-ripple.html">
|
| - <link rel="import" href="../font-roboto/roboto.html">
|
| - <link rel="import" href="../core-icon/core-icon.html">
|
| -
|
| - <style shim-shadowdom>
|
| -
|
| +
|
| + <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
|
| +
|
| + <link rel="import" href="../../iron-icons/iron-icons.html">
|
| + <link rel="import" href="../paper-ripple.html">
|
| + <link rel="import" href="../../paper-styles/classes/typography.html">
|
| + <link rel="import" href="../../iron-icon/iron-icon.html">
|
| +
|
| + <style>
|
| +
|
| body {
|
| background-color: #f9f9f9;
|
| font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
|
| -webkit-tap-highlight-color: rgba(0,0,0,0);
|
| -webkit-touch-callout: none;
|
| }
|
| -
|
| +
|
| section {
|
| padding: 30px 25px;
|
| }
|
| -
|
| +
|
| section > * {
|
| margin: 10px
|
| }
|
| -
|
| +
|
| /* Button */
|
| .button {
|
| display: inline-block;
|
| @@ -52,41 +52,41 @@
|
| background-color: #fff;
|
| color: #646464;
|
| }
|
| -
|
| +
|
| .button > paper-ripple {
|
| border-radius: 2px;
|
| overflow: hidden;
|
| }
|
| -
|
| +
|
| .button.narrow {
|
| width: 60px;
|
| }
|
| -
|
| +
|
| .button.grey {
|
| background-color: #eee;
|
| }
|
| -
|
| +
|
| .button.blue {
|
| background-color: #4285f4;
|
| color: #fff;
|
| }
|
| -
|
| +
|
| .button.green {
|
| background-color: #0f9d58;
|
| color: #fff;
|
| }
|
| -
|
| +
|
| .button.raised {
|
| transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
| transition-delay: 0.2s;
|
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
|
| }
|
| -
|
| +
|
| .button.raised:active {
|
| box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
| transition-delay: 0s;
|
| }
|
| -
|
| +
|
| /* Icon Button */
|
| .icon-button {
|
| position: relative;
|
| @@ -94,39 +94,39 @@
|
| width: 56px;
|
| height: 56px;
|
| }
|
| -
|
| - .icon-button > core-icon {
|
| +
|
| + .icon-button > iron-icon {
|
| margin: 16px;
|
| transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
| transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
| }
|
| -
|
| - .icon-button:hover > core-icon {
|
| +
|
| + .icon-button:hover > iron-icon {
|
| -webkit-transform: scale(1.2);
|
| transform: scale(1.2);
|
| }
|
| -
|
| +
|
| .icon-button > paper-ripple {
|
| overflow: hidden;
|
| color: #646464;
|
| }
|
| -
|
| - .icon-button.red > core-icon::shadow path {
|
| +
|
| + .icon-button.red > iron-icon::shadow path {
|
| fill: #db4437;
|
| }
|
| -
|
| +
|
| .icon-button.red > paper-ripple {
|
| color: #db4437;
|
| }
|
| -
|
| - .icon-button.blue > core-icon::shadow path {
|
| +
|
| + .icon-button.blue > iron-icon::shadow path {
|
| fill: #4285f4;
|
| }
|
| -
|
| +
|
| .icon-button.blue > paper-ripple {
|
| color: #4285f4;
|
| }
|
| -
|
| +
|
| /* FAB */
|
| .fab {
|
| position: relative;
|
| @@ -140,32 +140,32 @@
|
| transition-delay: 0.2s;
|
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
|
| }
|
| -
|
| +
|
| .fab.red {
|
| background-color: #d23f31;
|
| }
|
| -
|
| +
|
| .fab.blue {
|
| background-color: #4285f4;
|
| }
|
| -
|
| +
|
| .fab.green {
|
| background-color: #0f9d58;
|
| }
|
| -
|
| +
|
| .fab:active {
|
| box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
| transition-delay: 0s;
|
| }
|
| -
|
| - .fab > core-icon {
|
| +
|
| + .fab > iron-icon {
|
| margin: 16px;
|
| }
|
| -
|
| - .fab > core-icon::shadow path {
|
| +
|
| + .fab > iron-icon::shadow path {
|
| fill: #fff;
|
| }
|
| -
|
| +
|
| /* Menu */
|
| .menu {
|
| display: inline-block;
|
| @@ -173,7 +173,7 @@
|
| background-color: #fff;
|
| box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
| }
|
| -
|
| +
|
| .item {
|
| position: relative;
|
| height: 48px;
|
| @@ -181,11 +181,11 @@
|
| color: #646464;
|
| font-size: 0.9em;
|
| }
|
| -
|
| +
|
| .menu.blue > .item {
|
| color: #4285f4;
|
| }
|
| -
|
| +
|
| /* Card, Dialog */
|
| .card, .dialog {
|
| position: relative;
|
| @@ -196,219 +196,218 @@
|
| background-color: #fff;
|
| box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24);
|
| }
|
| -
|
| +
|
| .dialog {
|
| box-sizing: border-box;
|
| padding: 16px;
|
| }
|
| -
|
| +
|
| .dialog > .content {
|
| height: 170px;
|
| font-size: 0.9em;
|
| }
|
| -
|
| +
|
| .dialog > .content > .title {
|
| font-size: 1.3em;
|
| }
|
| -
|
| +
|
| .dialog > .button {
|
| width: 90px;
|
| float: right;
|
| }
|
| -
|
| +
|
| .card.image {
|
| background: url(http://lorempixel.com/300/240/nature/);
|
| color: #fff;
|
| }
|
| -
|
| +
|
| /* Misc */
|
| .center {
|
| text-align: center;
|
| }
|
| -
|
| +
|
| .label {
|
| padding: 0 16px;
|
| }
|
| -
|
| +
|
| .label-blue {
|
| - color: #4285f4;
|
| + color: #4285f4;
|
| }
|
| -
|
| +
|
| .label-red {
|
| - color: #d23f31;
|
| + color: #d23f31;
|
| }
|
| -
|
| +
|
| </style>
|
| -
|
| +
|
| </head>
|
| -<body unresolved>
|
| +<body>
|
|
|
| <section>
|
| -
|
| +
|
| <div class="button raised">
|
| <div class="center" fit>SUBMIT</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="button raised grey">
|
| <div class="center" fit>CANCEL</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="button raised blue">
|
| <div class="center" fit>COMPOSE</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="button raised green">
|
| <div class="center" fit>OK</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| </section>
|
| -
|
| +
|
| <section>
|
| -
|
| +
|
| <div class="button raised grey narrow">
|
| <div class="center" fit>+1</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="button raised grey narrow label-blue">
|
| <div class="center" fit>+1</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="button raised grey narrow label-red">
|
| <div class="center" fit>+1</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| </section>
|
| -
|
| +
|
| <section>
|
| -
|
| +
|
| <div class="icon-button">
|
| - <core-icon icon="menu"></core-icon>
|
| - <paper-ripple class="circle recenteringTouch" fit></paper-ripple>
|
| + <iron-icon icon="menu"></iron-icon>
|
| + <paper-ripple class="circle" recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="icon-button">
|
| - <core-icon icon="more-vert"></core-icon>
|
| - <paper-ripple class="circle recenteringTouch" fit></paper-ripple>
|
| + <iron-icon icon="more-vert"></iron-icon>
|
| + <paper-ripple class="circle" recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="icon-button red">
|
| - <core-icon icon="delete"></core-icon>
|
| - <paper-ripple class="circle recenteringTouch" fit></paper-ripple>
|
| + <iron-icon icon="delete"></iron-icon>
|
| + <paper-ripple class="circle" recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="icon-button blue">
|
| - <core-icon icon="account-box"></core-icon>
|
| - <paper-ripple class="circle recenteringTouch" fit></paper-ripple>
|
| + <iron-icon icon="account-box"></iron-icon>
|
| + <paper-ripple class="circle" recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| </section>
|
| -
|
| +
|
| <section>
|
| -
|
| +
|
| <div class="fab red">
|
| - <core-icon icon="add"></core-icon>
|
| - <paper-ripple class="circle recenteringTouch" fit></paper-ripple>
|
| + <iron-icon icon="add"></iron-icon>
|
| + <paper-ripple class="circle" recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="fab blue">
|
| - <core-icon icon="mail"></core-icon>
|
| - <paper-ripple class="circle recenteringTouch" fit></paper-ripple>
|
| + <iron-icon icon="mail"></iron-icon>
|
| + <paper-ripple class="circle" recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="fab green">
|
| - <core-icon icon="create"></core-icon>
|
| - <paper-ripple class="circle recenteringTouch" fit></paper-ripple>
|
| + <iron-icon icon="create"></iron-icon>
|
| + <paper-ripple class="circle" recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| </section>
|
| -
|
| +
|
| <section>
|
| -
|
| +
|
| <div class="menu">
|
| -
|
| +
|
| <div class="item">
|
| <div class="label" fit>Mark as unread</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| <div class="item">
|
| <div class="label" fit>Mark as important</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| <div class="item">
|
| <div class="label" fit>Add to Tasks</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| <div class="item">
|
| <div class="label" fit>Create event</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| </div>
|
| -
|
| +
|
| <div class="menu blue">
|
| -
|
| +
|
| <div class="item">
|
| <div class="label" fit>Import</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| <div class="item">
|
| <div class="label" fit>Export</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| <div class="item">
|
| <div class="label" fit>Print</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| <div class="item">
|
| <div class="label" fit>Restore contacts</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| </div>
|
| -
|
| +
|
| </section>
|
| -
|
| +
|
| <section>
|
| -
|
| +
|
| <div class="dialog">
|
| -
|
| +
|
| <div class="content">
|
| <div class="title">Permission</div><br>
|
| <div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</div>
|
| </div>
|
| -
|
| +
|
| <div class="button label-blue">
|
| <div class="center" fit>ACCEPT</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="button">
|
| <div class="center" fit>DECLINE</div>
|
| - <paper-ripple fit></paper-ripple>
|
| + <paper-ripple></paper-ripple>
|
| </div>
|
| -
|
| +
|
| </div>
|
| -
|
| +
|
| <div class="card">
|
| -
|
| - <paper-ripple class="recenteringTouch" fit></paper-ripple>
|
| -
|
| + <paper-ripple recenters></paper-ripple>
|
| </div>
|
| -
|
| +
|
| <div class="card image">
|
| -
|
| - <paper-ripple class="recenteringTouch" fit></paper-ripple>
|
| -
|
| +
|
| + <paper-ripple recenters></paper-ripple>
|
| +
|
| </div>
|
| -
|
| +
|
| </section>
|
| -
|
| +
|
| </body>
|
| </html>
|
| +
|
|
|