| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 */ | |
| 5 | 4 |
| 6 .cr-button { | 5 .cr-button { |
| 7 -webkit-appearance: none; | 6 -webkit-appearance: none; |
| 8 -webkit-user-select: none; | 7 -webkit-user-select: none; |
| 9 background-image: -webkit-linear-gradient(#ededed, #ededed 38%, #dedede); | 8 background-image: -webkit-linear-gradient(#ededed, #ededed 38%, #dedede); |
| 10 border: 1px solid rgba(0, 0, 0, 0.25); | 9 border: 1px solid rgba(0, 0, 0, 0.25); |
| 11 border-radius: 2px; | 10 border-radius: 2px; |
| 12 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), | 11 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), |
| 13 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 12 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
| 14 color: #444; | 13 color: #444; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 } | 131 } |
| 133 | 132 |
| 134 .cr-cb-popup > *:hover { | 133 .cr-cb-popup > *:hover { |
| 135 background-color: rgb(220, 229, 250); | 134 background-color: rgb(220, 229, 250); |
| 136 } | 135 } |
| 137 | 136 |
| 138 .cr-cb-popup > *:active { | 137 .cr-cb-popup > *:active { |
| 139 background-color: rgb(66, 109, 201); | 138 background-color: rgb(66, 109, 201); |
| 140 color: #fff; | 139 color: #fff; |
| 141 } | 140 } |
| OLD | NEW |