Changeset 29721 in webkit
- Timestamp:
- Jan 22, 2008, 9:36:26 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r29720 r29721 1 2008-01-22 David Hyatt <hyatt@apple.com> 2 3 Fix for <rdar://problem/5698481> REGRESSION: Web Inspector source view gutter double divider and no padding 4 5 Now that cellpadding cascades properly on <td>s, we need to make the view source padding rules in the user 6 agent sheet have !important in order to override author settings. 7 8 Reviewed by Tim 9 10 * css/view-source.css: 11 1 12 2008-01-22 Nikolas Zimmermann <zimmermann@kde.org> 2 13 -
trunk/WebCore/css/view-source.css
r23780 r29721 37 37 38 38 td { 39 padding: 0 ;39 padding: 0 !important; 40 40 vertical-align: baseline 41 41 } 42 42 43 43 .webkit-line-gutter-backdrop, .webkit-line-number { 44 padding: 0 2px ;44 padding: 0 2px !important; 45 45 min-width: 21px; 46 46 background-color: rgb(240, 240, 240); … … 73 73 74 74 .webkit-line-content { 75 padding: 0 5px ;75 padding: 0 5px !important; 76 76 } 77 77
Note:
See TracChangeset
for help on using the changeset viewer.