| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 4118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4129 left: 0; | 4129 left: 0; |
| 4130 right: 0; | 4130 right: 0; |
| 4131 padding-top: 4px; | 4131 padding-top: 4px; |
| 4132 padding-left: 10px; | 4132 padding-left: 10px; |
| 4133 background-color: #EBEBEB; | 4133 background-color: #EBEBEB; |
| 4134 border-bottom: 1px solid #BBB; | 4134 border-bottom: 1px solid #BBB; |
| 4135 | 4135 |
| 4136 font-size: 11px; | 4136 font-size: 11px; |
| 4137 } | 4137 } |
| 4138 | 4138 |
| 4139 .search-view .search-panel input[type="search"].search-config-search { |
| 4140 margin-right: 8px; |
| 4141 color: #303030; |
| 4142 } |
| 4143 |
| 4144 .search-view .search-panel label.search-config-label { |
| 4145 margin-right: 8px; |
| 4146 color: #303030; |
| 4147 } |
| 4148 |
| 4149 .search-view .search-panel input[type="checkbox"].search-config-checkbox { |
| 4150 vertical-align: bottom; |
| 4151 margin-bottom: 6px; |
| 4152 } |
| 4153 |
| 4139 .search-view .search-results { | 4154 .search-view .search-results { |
| 4140 position: absolute; | 4155 position: absolute; |
| 4141 top: 35px; | 4156 top: 35px; |
| 4142 bottom: 0; | 4157 bottom: 0; |
| 4143 left: 0; | 4158 left: 0; |
| 4144 right: 0; | 4159 right: 0; |
| 4145 overflow-y: auto; | 4160 overflow-y: auto; |
| 4146 | 4161 |
| 4147 padding-bottom: 5px; | 4162 padding-bottom: 5px; |
| 4148 } | 4163 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4194 | 4209 |
| 4195 #search-results-pane-file-based a { | 4210 #search-results-pane-file-based a { |
| 4196 text-decoration: none; | 4211 text-decoration: none; |
| 4197 display: block; | 4212 display: block; |
| 4198 } | 4213 } |
| 4199 | 4214 |
| 4200 #search-results-pane-file-based .search-match .search-match-content { | 4215 #search-results-pane-file-based .search-match .search-match-content { |
| 4201 color: #000; | 4216 color: #000; |
| 4202 white-space: pre; | 4217 white-space: pre; |
| 4203 } | 4218 } |
| OLD | NEW |