Changeset 182796 in webkit


Ignore:
Timestamp:
Apr 14, 2015, 8:15:35 AM (10 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Align array's indices and set's bullet points under the property icon
https://bugs.webkit.org/show_bug.cgi?id=143698

Reviewed by Timothy Hatcher.

  • UserInterface/Views/ObjectTreeMapEntryTreeElement.css:

(.object-tree-array-index.object-tree-map-entry > .titles > .title > .index-name):

  • UserInterface/Views/ObjectTreeArrayIndexTreeElement.css:

(.object-tree-array-index .index-name):
Right align array's and set's indices.

(.object-tree-map-entry):
Overwrite left property from .object-tree-array-index.

(.object-tree-property + ol .object-tree-map-entry):
Overwrite left property from .object-tree-property + ol .object-tree-array-index.

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r182778 r182796  
     12015-04-14  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Align array's indices and set's bullet points under the property icon
     4        https://bugs.webkit.org/show_bug.cgi?id=143698
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/ObjectTreeMapEntryTreeElement.css:
     9        (.object-tree-array-index.object-tree-map-entry > .titles > .title > .index-name):
     10        * UserInterface/Views/ObjectTreeArrayIndexTreeElement.css:
     11        (.object-tree-array-index .index-name):
     12        Right align array's and set's indices.
     13
     14        (.object-tree-map-entry):
     15        Overwrite left property from .object-tree-array-index.
     16
     17        (.object-tree-property + ol .object-tree-map-entry):
     18        Overwrite left property from .object-tree-property + ol .object-tree-array-index.
     19
    1202015-04-13  Joseph Pecoraro  <pecoraro@apple.com>
    221
  • trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeArrayIndexTreeElement.css

    r182644 r182796  
    4646
    4747    display: inline-block;
    48     width: 22px;
    49     margin-left: 13px;
    50     text-align: center;
     48    width: 30px;
     49    margin-right: 7px;
     50    text-align: right;
    5151}
    5252
  • trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeMapEntryTreeElement.css

    r182655 r182796  
    2525
    2626.object-tree-array-index.object-tree-map-entry > .titles > .title > .index-name {
    27     width: 37px;
     27    width: 40px;
    2828    text-align: right;
    2929    margin-right: 5px;
     
    3737    padding-top: 2px;
    3838    padding-bottom: 2px;
     39    left: -2px;
    3940}
     41
     42.object-tree-property + ol .object-tree-map-entry {
     43    left: -8px;
     44}
Note: See TracChangeset for help on using the changeset viewer.