Changeset 182796 in webkit
- Timestamp:
- Apr 14, 2015, 8:15:35 AM (10 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r182778 r182796 1 2015-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 1 20 2015-04-13 Joseph Pecoraro <pecoraro@apple.com> 2 21 -
trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeArrayIndexTreeElement.css
r182644 r182796 46 46 47 47 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; 51 51 } 52 52 -
trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeMapEntryTreeElement.css
r182655 r182796 25 25 26 26 .object-tree-array-index.object-tree-map-entry > .titles > .title > .index-name { 27 width: 37px;27 width: 40px; 28 28 text-align: right; 29 29 margin-right: 5px; … … 37 37 padding-top: 2px; 38 38 padding-bottom: 2px; 39 left: -2px; 39 40 } 41 42 .object-tree-property + ol .object-tree-map-entry { 43 left: -8px; 44 }
Note:
See TracChangeset
for help on using the changeset viewer.