| 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>
|
|
|