| 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 | 4 |
| 5 /* This file contains "borrowed" copy of standard styles. To simplify merging, | 5 /* This file contains "borrowed" copy of standard styles. To simplify merging, |
| 6 * when altering, please preserve original property value by adding comments. | 6 * when altering, please preserve original property value by adding comments. |
| 7 */ | 7 */ |
| 8 input.common[type='checkbox'], | 8 input.common[type='checkbox'], |
| 9 input.common[type='radio'] { | 9 input.common[type='radio'] { |
| 10 -webkit-appearance: none; | 10 -webkit-appearance: none; |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 } | 218 } |
| 219 | 219 |
| 220 .buttonbar button.action { | 220 .buttonbar button.action { |
| 221 background-color: rgb(209, 72, 54); | 221 background-color: rgb(209, 72, 54); |
| 222 background-image: -webkit-gradient(linear, | 222 background-image: -webkit-gradient(linear, |
| 223 left top, left bottom, from(rgb(221, 75, 57)), to(rgb(209, 72, 54))); | 223 left top, left bottom, from(rgb(221, 75, 57)), to(rgb(209, 72, 54))); |
| 224 border: 1px solid transparent; | 224 border: 1px solid transparent; |
| 225 color: #FFF; | 225 color: #FFF; |
| 226 font-weight: bold; | 226 font-weight: bold; |
| 227 letter-spacing: 1; | 227 letter-spacing: 1; |
| 228 margin-bottom: 16px; | |
| 229 text-transform: uppercase; | 228 text-transform: uppercase; |
| 230 } | 229 } |
| 231 | 230 |
| 232 .buttonbar button.action:not([disabled]):focus { | 231 .buttonbar button.action:not([disabled]):focus { |
| 233 border-color: rgb(209, 72, 54); | 232 border-color: rgb(209, 72, 54); |
| 234 } | 233 } |
| 235 | 234 |
| 236 .buttonbar button.action:not([disabled]):hover { | 235 .buttonbar button.action:not([disabled]):hover { |
| 237 background-color: rgb(197, 55, 39); | 236 background-color: rgb(197, 55, 39); |
| 238 background-image: -webkit-gradient(linear, | 237 background-image: -webkit-gradient(linear, |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 menu.chrome-menu > :not(hr)[checked] { | 304 menu.chrome-menu > :not(hr)[checked] { |
| 306 background-image: -webkit-image-set( | 305 background-image: -webkit-image-set( |
| 307 url('../images/common/check_no_box.png') 1x, | 306 url('../images/common/check_no_box.png') 1x, |
| 308 url('../images/common/2x/check_no_box.png') 2x); | 307 url('../images/common/2x/check_no_box.png') 2x); |
| 309 background-position: 2px center; | 308 background-position: 2px center; |
| 310 } | 309 } |
| 311 | 310 |
| 312 menu.chrome-menu > [checked]:before { | 311 menu.chrome-menu > [checked]:before { |
| 313 display: none; | 312 display: none; |
| 314 } | 313 } |
| OLD | NEW |