| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 /* TODO(dbeam): what's wrong with * here? Specificity issues? */ | 4 /* TODO(dbeam): what's wrong with * here? Specificity issues? */ |
| 5 audio, | 5 audio, |
| 6 body, | 6 body, |
| 7 canvas, | 7 canvas, |
| 8 command, | 8 command, |
| 9 dd, | 9 dd, |
| 10 div, | 10 div, |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 height: 29px; | 160 height: 29px; |
| 161 line-height: 29px; | 161 line-height: 29px; |
| 162 margin: 0; | 162 margin: 0; |
| 163 vertical-align: bottom; | 163 vertical-align: bottom; |
| 164 } | 164 } |
| 165 *+html button.g-button, | 165 *+html button.g-button, |
| 166 *+html input[type=submit].g-button { | 166 *+html input[type=submit].g-button { |
| 167 overflow: visible; | 167 overflow: visible; |
| 168 } | 168 } |
| 169 .g-button:hover { | 169 .g-button:hover { |
| 170 -webkit-transition: all 0; | 170 -webkit-transition: all 0ms; |
| 171 background-color: #f8f8f8; | 171 background-color: #f8f8f8; |
| 172 background-image: linear-gradient(to bottom, #f8f8f8, #f1f1f1); | 172 background-image: linear-gradient(to bottom, #f8f8f8, #f1f1f1); |
| 173 border: 1px solid #c6c6c6; | 173 border: 1px solid #c6c6c6; |
| 174 box-shadow: 0 1px 1px rgba(0,0,0,0.1); | 174 box-shadow: 0 1px 1px rgba(0,0,0,0.1); |
| 175 color: #333; | 175 color: #333; |
| 176 text-decoration: none; | 176 text-decoration: none; |
| 177 transition: all 0; | 177 transition: all 0ms; |
| 178 } | 178 } |
| 179 .g-button:active { | 179 .g-button:active { |
| 180 background-color: #f6f6f6; | 180 background-color: #f6f6f6; |
| 181 background-image: linear-gradient(to bottom, #f6f6f6, #f1f1f1); | 181 background-image: linear-gradient(to bottom, #f6f6f6, #f1f1f1); |
| 182 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); | 182 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); |
| 183 } | 183 } |
| 184 .g-button:visited { | 184 .g-button:visited { |
| 185 color: #666; | 185 color: #666; |
| 186 } | 186 } |
| 187 .g-button-submit { | 187 .g-button-submit { |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 height: 32px; | 273 height: 32px; |
| 274 margin: 0 1.5em 1.2em 0; | 274 margin: 0 1.5em 1.2em 0; |
| 275 } | 275 } |
| 276 .errormsg { | 276 .errormsg { |
| 277 display: none; | 277 display: none; |
| 278 } | 278 } |
| 279 .form-error + .errormsg, | 279 .form-error + .errormsg, |
| 280 .field-error + .errormsg { | 280 .field-error + .errormsg { |
| 281 display: block; | 281 display: block; |
| 282 } | 282 } |
| OLD | NEW |