| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 button:not(.custom-appearance), | 6 button:not(.custom-appearance), |
| 7 input[type='button']:not(.custom-appearance), | 7 input[type='button']:not(.custom-appearance), |
| 8 input[type='submit']:not(.custom-appearance) { | 8 input[type='submit']:not(.custom-appearance) { |
| 9 -webkit-border-radius: 2px; | 9 -webkit-border-radius: 3px; |
| 10 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | 10 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 11 -webkit-user-select: none; | 11 -webkit-user-select: none; |
| 12 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 12 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
| 13 border: 1px solid #aaa; | 13 border: 1px solid #aaa; |
| 14 color: #444; | 14 color: #444; |
| 15 font-size: inherit; | 15 font-size: inherit; |
| 16 margin-bottom: 0; | 16 margin-bottom: 0; |
| 17 min-width: 4em; | 17 min-width: 4em; |
| 18 padding: 3px 12px; | 18 padding: 3px 12px; |
| 19 } | 19 } |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 border: none !important; | 84 border: none !important; |
| 85 color: rgb(63, 110, 194); | 85 color: rgb(63, 110, 194); |
| 86 cursor: pointer; | 86 cursor: pointer; |
| 87 margin: 0; | 87 margin: 0; |
| 88 text-decoration: underline; | 88 text-decoration: underline; |
| 89 } | 89 } |
| 90 | 90 |
| 91 .link-button:active { | 91 .link-button:active { |
| 92 color: rgb(37, 64, 113); | 92 color: rgb(37, 64, 113); |
| 93 } | 93 } |
| OLD | NEW |