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

Unified Diff: third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html

Issue 2158913007: Roll Polymer from 1.5.0 -> 1.6.0 to pick up native CSS custom props (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html
diff --git a/third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html b/third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html
index 9495e23f76b31dff1f10eff488303c2b851f5a5a..422bfde4b7742106cdd0aa924d5132fcdd9854fb 100644
--- a/third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html
+++ b/third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html
@@ -10,7 +10,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html">
<link rel="import" href="../iron-selector/iron-selectable.html">
<link rel="import" href="neon-animation-runner-behavior.html">
-<link rel="import" href="animations/opaque-animation.html">
<!--
Material design: [Meaningful transitions](https://www.google.com/design/spec/animation/meaningful-transitions.html)
@@ -25,33 +24,30 @@ animations to be run when switching to or switching out of the page.
-->
</head><body><dom-module id="neon-animated-pages">
-
- <style>
-
- :host {
- display: block;
- position: relative;
- }
-
- :host > ::content > * {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
-
- :host > ::content > :not(.iron-selected):not(.neon-animating) {
- display: none !important;
- }
-
- :host > ::content > .neon-animating {
- pointer-events: none;
- }
-
- </style>
-
<template>
+ <style>
+ :host {
+ display: block;
+ position: relative;
+ }
+
+ :host > ::content > * {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ }
+
+ :host > ::content > :not(.iron-selected):not(.neon-animating) {
+ display: none !important;
+ }
+
+ :host > ::content > .neon-animating {
+ pointer-events: none;
+ }
+ </style>
+
<content id="content"></content>
</template>

Powered by Google App Engine
This is Rietveld 408576698