| 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 { | 6 #closeButton { |
| 7 font-size: 18px; | |
| 8 height: 100%; | |
| 9 overflow: hidden; | |
| 10 width: 100%; | |
| 11 } | |
| 12 | |
| 13 #backButton { | |
| 14 color: rgb(255, 255, 255); | 7 color: rgb(255, 255, 255); |
| 15 left: 0; | |
| 16 position: absolute; | 8 position: absolute; |
| 9 right: 0; |
| 17 top: 0; | 10 top: 0; |
| 18 z-index: 1; | 11 z-index: 1; |
| 19 } | 12 } |
| 20 | 13 |
| 21 :host-context(html[dir=rtl]) #backButton { | 14 :host-context(html[dir=rtl]) #closeButton { |
| 22 left: auto; | 15 left: 0; |
| 23 right: 0; | 16 right: auto; |
| 24 transform: scaleX(-1); | |
| 25 } | 17 } |
| 18 |
| 19 #cancelConfirmDlg { |
| 20 position: absolute; |
| 21 width: 384px; |
| 22 } |
| OLD | NEW |