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