| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 } | 552 } |
| 553 | 553 |
| 554 #error-warning-count { | 554 #error-warning-count { |
| 555 display: inline; | 555 display: inline; |
| 556 } | 556 } |
| 557 | 557 |
| 558 #error-warning-count:hover { | 558 #error-warning-count:hover { |
| 559 border-bottom: 1px solid rgb(96, 96, 96); | 559 border-bottom: 1px solid rgb(96, 96, 96); |
| 560 } | 560 } |
| 561 | 561 |
| 562 #error-count::before { | 562 #error-count-img { |
| 563 content: url(Images/errorIcon.png); | 563 content: url(Images/errorIcon.png); |
| 564 width: 10px; | 564 width: 10px; |
| 565 height: 10px; | 565 height: 10px; |
| 566 vertical-align: -1px; | 566 vertical-align: -1px; |
| 567 margin-right: 2px; | 567 margin-right: 2px; |
| 568 } | 568 } |
| 569 | 569 |
| 570 #error-count + #warning-count { | 570 #error-count + #warning-count-img { |
| 571 margin-left: 6px; | 571 margin-left: 6px; |
| 572 } | 572 } |
| 573 | 573 |
| 574 #warning-count::before { | 574 #warning-count-img { |
| 575 content: url(Images/warningIcon.png); | 575 content: url(Images/warningIcon.png); |
| 576 width: 10px; | 576 width: 10px; |
| 577 height: 10px; | 577 height: 10px; |
| 578 vertical-align: -1px; | 578 vertical-align: -1px; |
| 579 margin-right: 2px; | 579 margin-right: 2px; |
| 580 } | 580 } |
| 581 | 581 |
| 582 #drawer { | 582 #drawer { |
| 583 display: none; | 583 display: none; |
| 584 position: absolute; | 584 position: absolute; |
| (...skipping 3682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4267 | 4267 |
| 4268 #search-results-pane-file-based a { | 4268 #search-results-pane-file-based a { |
| 4269 text-decoration: none; | 4269 text-decoration: none; |
| 4270 display: block; | 4270 display: block; |
| 4271 } | 4271 } |
| 4272 | 4272 |
| 4273 #search-results-pane-file-based .search-match .search-match-content { | 4273 #search-results-pane-file-based .search-match .search-match-content { |
| 4274 color: #000; | 4274 color: #000; |
| 4275 white-space: pre; | 4275 white-space: pre; |
| 4276 } | 4276 } |
| OLD | NEW |