| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 input[type="search" i]::-webkit-search-results-decoration { | 91 input[type="search" i]::-webkit-search-results-decoration { |
| 92 margin: auto 3px auto 2px; | 92 margin: auto 3px auto 2px; |
| 93 } | 93 } |
| 94 | 94 |
| 95 input[type="button" i], input[type="submit" i], input[type="reset" i], input[typ
e="file" i]::-webkit-file-upload-button, button { | 95 input[type="button" i], input[type="submit" i], input[type="reset" i], input[typ
e="file" i]::-webkit-file-upload-button, button { |
| 96 padding: 1px 6px; | 96 padding: 1px 6px; |
| 97 } | 97 } |
| 98 | 98 |
| 99 /* Windows selects are not rounded. Custom borders for them shouldn't be either.
*/ | 99 /* Windows selects are not rounded. Custom borders for them shouldn't be either.
*/ |
| 100 keygen, | |
| 101 select, | 100 select, |
| 102 select[size="0"], | 101 select[size="0"], |
| 103 select[size="1"] { | 102 select[size="1"] { |
| 104 border-radius: 0; | 103 border-radius: 0; |
| 105 /* Same as native_theme_base. */ | 104 /* Same as native_theme_base. */ |
| 106 border-color: #a9a9a9; | 105 border-color: #a9a9a9; |
| 107 } | 106 } |
| 108 | 107 |
| 109 select[size], | 108 select[size], |
| 110 select[multiple], | 109 select[multiple], |
| 111 select[size][multiple] { | 110 select[size][multiple] { |
| 112 /* Same as native_theme_base. */ | 111 /* Same as native_theme_base. */ |
| 113 border: 1px solid #a9a9a9; | 112 border: 1px solid #a9a9a9; |
| 114 } | 113 } |
| 115 | 114 |
| 116 textarea { | 115 textarea { |
| 117 font-family: monospace; | 116 font-family: monospace; |
| 118 /* Same as native_theme_base. */ | 117 /* Same as native_theme_base. */ |
| 119 border-color: #a9a9a9; | 118 border-color: #a9a9a9; |
| 120 } | 119 } |
| OLD | NEW |