| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Google Inc. All rights reserved. | 2 * Copyright (C) 2008 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 /* These styles override the default styling for HTML elements as defined in | 31 /* These styles override the default styling for HTML elements as defined in |
| 32 WebCore/css/html.css. So far we have used this file exclusively for | 32 WebCore/css/html.css. So far we have used this file exclusively for |
| 33 making our form elements match Firefox's. */ | 33 making our form elements match Firefox's. */ |
| 34 | 34 |
| 35 input:not([type]), | 35 input:not([type]), |
| 36 input[type="color"], | |
| 37 input[type="email"], | 36 input[type="email"], |
| 38 input[type="number"], | 37 input[type="number"], |
| 39 input[type="password"], | 38 input[type="password"], |
| 40 input[type="tel"], | 39 input[type="tel"], |
| 41 input[type="url"], | 40 input[type="url"], |
| 42 input[type="text"] { | 41 input[type="text"] { |
| 43 padding:1px 0; | 42 padding:1px 0; |
| 44 } | 43 } |
| 45 | 44 |
| 46 input[type="search"] { | 45 input[type="search"] { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 for that computation to be correct */ | 126 for that computation to be correct */ |
| 128 option { | 127 option { |
| 129 font: inherit !important; | 128 font: inherit !important; |
| 130 } | 129 } |
| 131 | 130 |
| 132 textarea { | 131 textarea { |
| 133 font-family: monospace; | 132 font-family: monospace; |
| 134 /* Same as native_theme_base. */ | 133 /* Same as native_theme_base. */ |
| 135 border-color: #a9a9a9; | 134 border-color: #a9a9a9; |
| 136 } | 135 } |
| OLD | NEW |