3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9 --><html><head><link rel=
"import" href=
"../polymer/polymer.html">
10 <link rel=
"import" href=
"iron-overlay-manager.html">
13 `iron-overlay-backdrop` is a backdrop used by `Polymer.IronOverlayBehavior`. It should be a
18 The following custom properties and mixins are available for styling.
20 Custom property | Description | Default
21 -------------------------------------------|------------------------|---------
22 `--iron-overlay-backdrop-background-color` | Backdrop background color | #000
23 `--iron-overlay-backdrop-opacity` | Backdrop opacity | 0.6
24 `--iron-overlay-backdrop` | Mixin applied to `iron-overlay-backdrop`. | {}
25 `--iron-overlay-backdrop-opened` | Mixin applied to `iron-overlay-backdrop` when it is displayed | {}
28 </head><body><dom-module id=
"iron-overlay-backdrop">
38 background-color: var(--iron-overlay-backdrop-background-color, #
000);
40 transition: opacity
0.2s;
42 @apply(--iron-overlay-backdrop);
46 opacity: var(--iron-overlay-backdrop-opacity,
0.6);
48 @apply(--iron-overlay-backdrop-opened);
59 <script src=
"iron-overlay-backdrop-extracted.js"></script></body></html>