| 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 #custom-controller { | 5 #custom-controller { |
| 6 display: inline-block; | 6 display: inline-block; |
| 7 height: 142px; | 7 height: 142px; |
| 8 width: 100%; | 8 width: 100%; |
| 9 } | 9 } |
| 10 | 10 |
| 11 #route-action-buttons { | 11 #route-action-buttons { |
| 12 @apply(--layout-horizontal); | 12 @apply(--layout-horizontal); |
| 13 @apply(--layout-end-justified); | 13 @apply(--layout-end-justified); |
| 14 margin: 0 10px; | 14 margin: 0 10px; |
| 15 padding: 0; | 15 padding: 0; |
| 16 white-space: nowrap; | 16 white-space: nowrap; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .route-button { | 19 .route-button { |
| 20 background-color: white; | 20 background-color: white; |
| 21 line-height: 12px; | 21 line-height: 12px; |
| 22 margin: 12px 0; | 22 margin: 12px 0; |
| 23 text-align: end; | 23 text-align: end; |
| 24 } | 24 } |
| 25 | 25 |
| 26 route-controller { |
| 27 display: inline-block; |
| 28 } |
| 29 |
| 26 #route-information { | 30 #route-information { |
| 27 -webkit-padding-end: var(--dialog-padding-end); | 31 -webkit-padding-end: var(--dialog-padding-end); |
| 28 -webkit-padding-start: 44px; | 32 -webkit-padding-start: 44px; |
| 29 background-color: white; | 33 background-color: white; |
| 30 font-size: 1.2em; | 34 font-size: 1.2em; |
| 31 line-height: 1.5em; | 35 line-height: 1.5em; |
| 32 margin-top: 16px; | 36 margin-top: 16px; |
| 33 overflow: hidden; | 37 overflow: hidden; |
| 34 } | 38 } |
| OLD | NEW |