| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 position: absolute; | 151 position: absolute; |
| 152 display: block; | 152 display: block; |
| 153 content: ""; | 153 content: ""; |
| 154 left: 7px; | 154 left: 7px; |
| 155 top: 0.8em; | 155 top: 0.8em; |
| 156 width: 10px; | 156 width: 10px; |
| 157 height: 10px; | 157 height: 10px; |
| 158 margin-top: -7px; | 158 margin-top: -7px; |
| 159 -webkit-user-select: none; | 159 -webkit-user-select: none; |
| 160 background-image: url(Images/toolbarButtonGlyphs.png); | 160 background-image: url(Images/toolbarButtonGlyphs.png); |
| 161 background-size: 320px 144px; | 161 background-size: 352px 144px; |
| 162 } | 162 } |
| 163 | 163 |
| 164 @media (-webkit-min-device-pixel-ratio: 1.5) { | 164 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 165 .database-user-query::before, | 165 .database-user-query::before, |
| 166 .database-query-prompt::before, | 166 .database-query-prompt::before, |
| 167 .database-query-result::before { | 167 .database-query-result::before { |
| 168 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 168 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 169 } | 169 } |
| 170 } /* media */ | 170 } /* media */ |
| 171 | 171 |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 content: url(Images/cookie.png); | 350 content: url(Images/cookie.png); |
| 351 } | 351 } |
| 352 | 352 |
| 353 .application-cache-storage-tree-item .icon { | 353 .application-cache-storage-tree-item .icon { |
| 354 content: url(Images/applicationCache.png); | 354 content: url(Images/applicationCache.png); |
| 355 } | 355 } |
| 356 | 356 |
| 357 .file-system-storage-tree-item .icon { | 357 .file-system-storage-tree-item .icon { |
| 358 content: url(Images/fileSystem.png); | 358 content: url(Images/fileSystem.png); |
| 359 } | 359 } |
| OLD | NEW |