| OLD | NEW |
| 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <polymer-element name="cr-dialog-backdrop" noscript> | 5 <polymer-element name="cr-dialog-backdrop" noscript> |
| 6 <template> | 6 <template> |
| 7 <style> | 7 <style> |
| 8 :host { | 8 :host { |
| 9 position: fixed; | 9 position: fixed; |
| 10 top: 0; | 10 top: 0; |
| 11 right: 0; | 11 right: 0; |
| 12 bottom: 0; | 12 bottom: 0; |
| 13 left: 0; | 13 left: 0; |
| 14 background: rgba(0,0,0,0.1); | 14 background: rgba(0,0,0,0.1); |
| 15 } | 15 } |
| 16 </style> | 16 </style> |
| 17 </template> | 17 </template> |
| 18 </ploymer-element> | 18 </ploymer-element> |
| OLD | NEW |