Changeset 175599 in webkit


Ignore:
Timestamp:
Nov 4, 2014 7:18:13 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Too much whitespace in resource details sidebar in groups
https://bugs.webkit.org/show_bug.cgi?id=138386

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-11-04
Reviewed by Timothy Hatcher.

  • UserInterface/Views/DetailsSection.css:

(.details-section > .content > .group:first-child > .row.simple:first-child > *):
(body.mac-platform.legacy .details-section > .content > .group:first-child > .row.simple:first-child > *):
(body.mac-platform.legacy .details-section > .content > .group > .row.text):
(.details-section > .content > .group > .row.properties:not(.empty)):
(body.mac-platform.legacy .details-section > .content > .group > .row.properties:not(.empty)):
Adjust top and bottom padding.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r175598 r175599  
     12014-11-04  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Too much whitespace in resource details sidebar in groups
     4        https://bugs.webkit.org/show_bug.cgi?id=138386
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/DetailsSection.css:
     9        (.details-section > .content > .group:first-child > .row.simple:first-child > *):
     10        (body.mac-platform.legacy .details-section > .content > .group:first-child > .row.simple:first-child > *):
     11        (body.mac-platform.legacy .details-section > .content > .group > .row.text):
     12        (.details-section > .content > .group > .row.properties:not(.empty)):
     13        (body.mac-platform.legacy .details-section > .content > .group > .row.properties:not(.empty)):
     14        Adjust top and bottom padding.
     15
    1162014-11-04  Joseph Pecoraro  <pecoraro@apple.com>
    217
  • trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css

    r175588 r175599  
    262262}
    263263
     264.details-section > .content > .group:first-child > .row.simple:first-child > * {
     265    padding: 0px 4px 2px 4px;
     266}
     267
     268body.mac-platform.legacy .details-section > .content > .group:first-child > .row.simple:first-child > * {
     269    padding: 5px 4px 2px;
     270}
     271
    264272.details-section > .content > .group > .row.simple > .label {
    265273    color: rgb(51, 51, 51);
     
    298306}
    299307
     308body.mac-platform.legacy .details-section > .content > .group > .row.empty,
     309body.mac-platform.legacy .details-section > .content > .group > .row.text {
     310    padding: 6px;
     311}
     312
    300313.details-section > .content > .group > .row.text {
    301314    -webkit-user-select: text;
     
    303316
    304317.details-section > .content > .group > .row.properties:not(.empty) {
     318    padding: 0 4px 6px 4px;
     319}
     320
     321body.mac-platform.legacy .details-section > .content > .group > .row.properties:not(.empty) {
    305322    padding: 4px 6px;
    306323}
Note: See TracChangeset for help on using the changeset viewer.