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

Unified Diff: third_party/polymer/v1_0/components-chromium/app-layout/app-header/app-header.html

Issue 2074813002: Roll Polymer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chromium.patch Created 4 years, 6 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/app-layout/app-header/app-header.html
diff --git a/third_party/polymer/v1_0/components-chromium/app-layout/app-header/app-header.html b/third_party/polymer/v1_0/components-chromium/app-layout/app-header/app-header.html
index c69ff88205793de8616bfa0780c499eb5dca511f..62c4fc2a8f14117d3c3cd5485b77c5fc06ac0973 100644
--- a/third_party/polymer/v1_0/components-chromium/app-layout/app-header/app-header.html
+++ b/third_party/polymer/v1_0/components-chromium/app-layout/app-header/app-header.html
@@ -218,6 +218,7 @@ Mixin | Description | Default
@demo app-header/demo/music.html Reveals Demo
@demo app-header/demo/no-effects.html Condenses and Reveals Demo
@demo app-header/demo/notes.html Fixed with Dynamic Shadow Demo
+@demo app-header/demo/custom-primary-element.html Custom Primary Element Demo
-->
</head><body><dom-module id="app-header">
@@ -225,9 +226,7 @@ Mixin | Description | Default
<style>
:host {
position: relative;
-
display: block;
-
transition-timing-function: linear;
transition-property: -webkit-transform;
transition-property: transform;
@@ -238,19 +237,14 @@ Mixin | Description | Default
right: 0px;
bottom: -5px;
left: 0px;
-
width: 100%;
height: 5px;
-
content: "";
transition: opacity 0.4s;
pointer-events: none;
-
opacity: 0;
box-shadow: inset 0px 5px 6px -3px rgba(0, 0, 0, 0.4);
-
will-change: opacity;
-
@apply(--app-header-shadow);
}
@@ -262,7 +256,6 @@ Mixin | Description | Default
-webkit-transform-origin: left top;
transform-origin: left top;
white-space: nowrap;
-
opacity: 0;
}
@@ -274,18 +267,14 @@ Mixin | Description | Default
#background {
@apply(--layout-fit);
-
overflow: hidden;
}
#backgroundFrontLayer,
#backgroundRearLayer {
@apply(--layout-fit);
-
height: 100%;
-
pointer-events: none;
-
background-size: cover;
}
@@ -295,13 +284,11 @@ Mixin | Description | Default
#backgroundRearLayer {
opacity: 0;
-
@apply(--app-header-background-rear-layer);
}
#contentContainer {
position: relative;
-
width: 100%;
height: 100%;
}
@@ -322,11 +309,6 @@ Mixin | Description | Default
transition: none !important;
}
</style>
-
- <div id="background">
- <div id="backgroundRearLayer"></div>
- <div id="backgroundFrontLayer"></div>
- </div>
<div id="contentContainer">
<content id="content"></content>
</div>

Powered by Google App Engine
This is Rietveld 408576698