| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 | 5 |
| 6 :host { |
| 7 display: block; |
| 8 position: relative; |
| 9 } |
| 10 |
| 6 #closeButton { | 11 #closeButton { |
| 7 color: white; | 12 color: white; |
| 8 position: absolute; | 13 position: absolute; |
| 9 right: 10px; | 14 right: 10px; |
| 10 top: 10px; | 15 top: 10px; |
| 11 z-index: 1; | 16 z-index: 1; |
| 12 } | 17 } |
| 13 | 18 |
| 14 :host-context(html[dir=rtl]) #closeButton { | 19 :host-context(html[dir=rtl]) #closeButton { |
| 15 left: 10px; | 20 left: 10px; |
| 16 right: auto; | 21 right: auto; |
| 17 } | 22 } |
| 18 | 23 |
| 19 #cancelConfirmDlg { | 24 paper-dialog { |
| 20 position: absolute; | 25 --paper-dialog-title: { |
| 26 font-size: 15px; |
| 27 }; |
| 28 |
| 29 /** |
| 30 * TODO(dzhioev): remove when |
| 31 * https://github.com/PolymerElements/iron-fit-behavior/issues/12 is fixed. |
| 32 */ |
| 33 position: absolute !important; |
| 34 |
| 21 width: 384px; | 35 width: 384px; |
| 22 } | 36 } |
| OLD | NEW |