| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 .container { | 5 .container { |
| 6 margin: 64px auto; | 6 margin: 64px auto; |
| 7 width: 556px; | 7 width: 556px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #title-bar { | 10 #title-bar { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 margin-top: 32px; | 83 margin-top: 32px; |
| 84 } | 84 } |
| 85 | 85 |
| 86 #actions paper-button { | 86 #actions paper-button { |
| 87 border-radius: 2px; | 87 border-radius: 2px; |
| 88 line-height: 32px; | 88 line-height: 32px; |
| 89 min-width: 52px; | 89 min-width: 52px; |
| 90 padding: 0 16px; | 90 padding: 0 16px; |
| 91 } | 91 } |
| 92 | 92 |
| 93 #cancel-button { | 93 #cancel { |
| 94 color: rgb(90, 90, 90); | 94 color: rgb(90, 90, 90); |
| 95 } | 95 } |
| 96 | 96 |
| 97 #ok-button { | 97 #ok { |
| 98 -webkit-margin-end: 0; | 98 -webkit-margin-end: 0; |
| 99 background: var(--google-blue-500); | 99 background: var(--google-blue-500); |
| 100 color: #fff; | 100 color: #fff; |
| 101 } | 101 } |
| 102 | 102 |
| 103 #ok-button[disabled] { | 103 #ok[disabled] { |
| 104 background: rgba(66, 133, 244, .5); | 104 background: rgba(66, 133, 244, .5); |
| 105 } | 105 } |
| OLD | NEW |