| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 height: 27px; | 162 height: 27px; |
| 163 line-height: 27px; | 163 line-height: 27px; |
| 164 margin: 0 0 0 8px; | 164 margin: 0 0 0 8px; |
| 165 min-width: 54px; | 165 min-width: 54px; |
| 166 padding: 0 8px; | 166 padding: 0 8px; |
| 167 position: relative; | 167 position: relative; |
| 168 text-align: center; | 168 text-align: center; |
| 169 z-index: 1; | 169 z-index: 1; |
| 170 } | 170 } |
| 171 | 171 |
| 172 .buttonbar button:hover { |
| 173 -webkit-transition: all 0; |
| 174 background-image: -webkit-linear-gradient(top, #F8F8F8, #F1F1F1); |
| 175 border: 1px solid #C6C6C6; |
| 176 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); |
| 177 color: #222; |
| 178 } |
| 179 |
| 180 .buttonbar button:active { |
| 181 background-color: #F6F6F6; |
| 182 background-image: -webkit-linear-gradient(top,#F6F6F6,#F1F1F1); |
| 183 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
| 184 } |
| 185 |
| 172 .buttonbar button[disabled] { | 186 .buttonbar button[disabled] { |
| 173 background-color: #EEE; | 187 background-color: #EEE; |
| 174 background-image: -webkit-linear-gradient(top, #EEE, #E0E0E0); | 188 background-image: -webkit-linear-gradient(top, #EEE, #E0E0E0); |
| 175 border: 1px solid #CCC; | 189 border: 1px solid #CCC; |
| 176 color: #333; | 190 color: #333; |
| 177 } | 191 } |
| 178 | 192 |
| 179 .buttonbar button:active img { | 193 .buttonbar button:active img { |
| 180 opacity: 1.0; | 194 opacity: 1.0; |
| 181 } | 195 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 menu.chrome-menu > :not(hr)[checked] { | 269 menu.chrome-menu > :not(hr)[checked] { |
| 256 background-image: -webkit-image-set( | 270 background-image: -webkit-image-set( |
| 257 url('../images/common/check_no_box.png') 1x, | 271 url('../images/common/check_no_box.png') 1x, |
| 258 url('../images/common/2x/check_no_box.png') 2x); | 272 url('../images/common/2x/check_no_box.png') 2x); |
| 259 background-position: 2px center; | 273 background-position: 2px center; |
| 260 } | 274 } |
| 261 | 275 |
| 262 menu.chrome-menu > [checked]:before { | 276 menu.chrome-menu > [checked]:before { |
| 263 display: none; | 277 display: none; |
| 264 } | 278 } |
| OLD | NEW |