⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245713 in webkit


Ignore:
Timestamp:
May 23, 2019, 2:06:56 PM (7 years ago)
Author:
Matt Baker
Message:

Web Inspector: Remove unused CSS class "offset-sections"
https://bugs.webkit.org/show_bug.cgi?id=198194
<rdar://problem/51080111>

Reviewed by Devin Rousso.

  • UserInterface/Views/DebuggerSidebarPanel.js:
  • UserInterface/Views/StyleDetailsPanel.js:

(WI.StyleDetailsPanel):

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r245696 r245713  
     12019-05-23  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: Remove unused CSS class "offset-sections"
     4        https://bugs.webkit.org/show_bug.cgi?id=198194
     5        <rdar://problem/51080111>
     6
     7        Reviewed by Devin Rousso.
     8
     9        * UserInterface/Views/DebuggerSidebarPanel.js:
     10        * UserInterface/Views/StyleDetailsPanel.js:
     11        (WI.StyleDetailsPanel):
     12
    1132019-05-23  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.js

    r245665 r245713  
    125125        this._navigationBar.addNavigationItem(this._debuggerStepOutButtonItem);
    126126
    127         // Add this offset-sections class name so the sticky headers don't overlap the navigation bar.
    128         this.element.classList.add(WI.DebuggerSidebarPanel.OffsetSectionsStyleClassName);
    129 
    130127        function showResourcesWithIssuesOnlyFilterFunction(treeElement)
    131128        {
  • trunk/Source/WebInspectorUI/UserInterface/Views/StyleDetailsPanel.js

    r236766 r245713  
    3232        this._delegate = delegate || null;
    3333
    34         // Add this offset-sections class name so the sticky headers don't overlap the navigation bar.
    35         this.element.classList.add(className, "offset-sections");
     34        this.element.classList.add(className);
    3635
    3736        this._navigationInfo = {identifier, label};
Note: See TracChangeset for help on using the changeset viewer.