update components
This commit is contained in:
parent
cbccf10bec
commit
b0f79e54f4
4 changed files with 68 additions and 56 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "paper-ripple",
|
"name": "paper-ripple",
|
||||||
"version": "1.0.3",
|
"version": "1.0.4",
|
||||||
"license": "http://polymer.github.io/LICENSE.txt",
|
"license": "http://polymer.github.io/LICENSE.txt",
|
||||||
"description": "Adds a material design ripple to any container",
|
"description": "Adds a material design ripple to any container",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
@ -32,11 +32,11 @@
|
||||||
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0"
|
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/polymerelements/paper-ripple",
|
"homepage": "https://github.com/polymerelements/paper-ripple",
|
||||||
"_release": "1.0.3",
|
"_release": "1.0.4",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.3",
|
"tag": "v1.0.4",
|
||||||
"commit": "c6e9664ca79c74bbd4219077438c4d163d6be962"
|
"commit": "5f5893ca7bd6a8413d2f777c092a1a179b6bd45e"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/paper-ripple.git",
|
"_source": "git://github.com/polymerelements/paper-ripple.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "paper-ripple",
|
"name": "paper-ripple",
|
||||||
"version": "1.0.3",
|
"version": "1.0.4",
|
||||||
"license": "http://polymer.github.io/LICENSE.txt",
|
"license": "http://polymer.github.io/LICENSE.txt",
|
||||||
"description": "Adds a material design ripple to any container",
|
"description": "Adds a material design ripple to any container",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|
|
@ -95,6 +95,12 @@ Apply `circle` class to make the rippling effect within a circle.
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
||||||
|
/* See PolymerElements/paper-behaviors/issues/34. On non-Chrome browsers,
|
||||||
|
* creating a node (with a position:absolute) in the middle of an event
|
||||||
|
* handler "interrupts" that event handler (which happens when the
|
||||||
|
* ripple is created on demand) */
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
:host([animating]) {
|
:host([animating]) {
|
||||||
|
|
|
@ -13333,6 +13333,12 @@ is separate from validation, and `allowed-pattern` does not affect how the input
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
||||||
|
/* See PolymerElements/paper-behaviors/issues/34. On non-Chrome browsers,
|
||||||
|
* creating a node (with a position:absolute) in the middle of an event
|
||||||
|
* handler "interrupts" that event handler (which happens when the
|
||||||
|
* ripple is created on demand) */
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
:host([animating]) {
|
:host([animating]) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue