Changeset 224293 in webkit


Ignore:
Timestamp:
Nov 1, 2017 2:04:31 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Combine all storage icon files into a single file
https://bugs.webkit.org/show_bug.cgi?id=179134

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2017-11-01
Reviewed by Devin Rousso.

  • UserInterface/Main.html:
  • UserInterface/Views/CookieIcon.css: Removed.
  • UserInterface/Views/DOMStorageIcons.css: Removed.
  • UserInterface/Views/DatabaseIcon.css: Removed.
  • UserInterface/Views/DatabaseTableIcon.css: Removed.
  • UserInterface/Views/StorageIcons.css: Added.

(.application-cache-manifest .icon):
(.application-cache-frame .icon):
(.cookie-icon .icon):
(.local-storage-icon .icon):
(.session-storage-icon .icon):
(.database-icon .icon):
(.database-table-icon .icon):

Location:
trunk/Source/WebInspectorUI
Files:
4 deleted
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r224286 r224293  
     12017-11-01  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Combine all storage icon files into a single file
     4        https://bugs.webkit.org/show_bug.cgi?id=179134
     5
     6        Reviewed by Devin Rousso.
     7
     8        * UserInterface/Main.html:
     9        * UserInterface/Views/CookieIcon.css: Removed.
     10        * UserInterface/Views/DOMStorageIcons.css: Removed.
     11        * UserInterface/Views/DatabaseIcon.css: Removed.
     12        * UserInterface/Views/DatabaseTableIcon.css: Removed.
     13        * UserInterface/Views/StorageIcons.css: Added.
     14        (.application-cache-manifest .icon):
     15        (.application-cache-frame .icon):
     16        (.cookie-icon .icon):
     17        (.local-storage-icon .icon):
     18        (.session-storage-icon .icon):
     19        (.database-icon .icon):
     20        (.database-table-icon .icon):
     21
    1222017-11-01  Nikita Vasilyev  <nvasilyev@apple.com>
    223
  • trunk/Source/WebInspectorUI/UserInterface/Main.html

    r223929 r224293  
    3232
    3333    <link rel="stylesheet" href="Views/ApplicationCacheFrameContentView.css">
    34     <link rel="stylesheet" href="Views/ApplicationCacheIcons.css">
    3534    <link rel="stylesheet" href="Views/BezierEditor.css">
    3635    <link rel="stylesheet" href="Views/BoxModelDetailsSectionRow.css">
     
    6867    <link rel="stylesheet" href="Views/ContentViewContainer.css">
    6968    <link rel="stylesheet" href="Views/ControlToolbarItem.css">
    70     <link rel="stylesheet" href="Views/CookieIcon.css">
    7169    <link rel="stylesheet" href="Views/CookieStorageContentView.css">
    7270    <link rel="stylesheet" href="Views/DOMNodeDetailsSidebarPanel.css">
    7371    <link rel="stylesheet" href="Views/DOMStorageContentView.css">
    74     <link rel="stylesheet" href="Views/DOMStorageIcons.css">
    7572    <link rel="stylesheet" href="Views/DOMTreeContentView.css">
    7673    <link rel="stylesheet" href="Views/DOMTreeDataGrid.css">
     
    7976    <link rel="stylesheet" href="Views/DataGrid.css">
    8077    <link rel="stylesheet" href="Views/DatabaseContentView.css">
    81     <link rel="stylesheet" href="Views/DatabaseIcon.css">
    8278    <link rel="stylesheet" href="Views/DatabaseTableContentView.css">
    83     <link rel="stylesheet" href="Views/DatabaseTableIcon.css">
    8479    <link rel="stylesheet" href="Views/DebuggerDashboardView.css">
    8580    <link rel="stylesheet" href="Views/DebuggerSidebarPanel.css">
     
    187182    <link rel="stylesheet" href="Views/SpringEditor.css">
    188183    <link rel="stylesheet" href="Views/StackTraceView.css">
     184    <link rel="stylesheet" href="Views/StorageIcons.css">
    189185    <link rel="stylesheet" href="Views/StorageSidebarPanel.css">
    190186    <link rel="stylesheet" href="Views/StyleRuleIcons.css">
  • trunk/Source/WebInspectorUI/UserInterface/Views/StorageIcons.css

    r224291 r224293  
    11/*
    2  * Copyright (C) 2013 Apple Inc. All rights reserved.
     2 * Copyright (C) 2013-2017 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    3131    content: image-set(url(../Images/ApplicationCache.png) 1x, url(../Images/ApplicationCache@2x.png) 2x);
    3232}
     33
     34.cookie-icon .icon {
     35    content: image-set(url(../Images/Cookie.png) 1x, url(../Images/Cookie@2x.png) 2x);
     36}
     37
     38.local-storage-icon .icon {
     39    content: image-set(url(../Images/LocalStorage.png) 1x, url(../Images/LocalStorage@2x.png) 2x);
     40}
     41
     42.session-storage-icon .icon {
     43    content: image-set(url(../Images/SessionStorage.png) 1x, url(../Images/SessionStorage@2x.png) 2x);
     44}
     45
     46.database-icon .icon {
     47    content: image-set(url(../Images/Database.png) 1x, url(../Images/Database@2x.png) 2x);
     48}
     49
     50.database-table-icon .icon {
     51    content: image-set(url(../Images/DatabaseTable.png) 1x, url(../Images/DatabaseTable@2x.png) 2x);
     52}
Note: See TracChangeset for help on using the changeset viewer.