Changeset 148668 in webkit


Ignore:
Timestamp:
Apr 18, 2013 5:54:42 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Toolbar icons are displayed incorrectly
https://bugs.webkit.org/show_bug.cgi?id=114792

Patch by Seokju Kwon <Seokju Kwon> on 2013-04-18
Reviewed by Timothy Hatcher.

Inspector uses small toolbar icons when docking the inspector.
So icons should have different x position.

No tests because no behavior change is expected.

  • inspector/front-end/inspector.css: Add missing 'background-position-x' values.

(body.dock-to-bottom .toolbar-item.profiles .toolbar-icon):
(body.dock-to-bottom .toolbar-item.cpu-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.css-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.heap-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.canvas-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.memory-chart-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.memory-snapshot-profiler .toolbar-icon):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r148658 r148668  
     12013-04-18  Seokju Kwon  <seokju.kwon@gmail.com>
     2
     3        Web Inspector: Toolbar icons are displayed incorrectly
     4        https://bugs.webkit.org/show_bug.cgi?id=114792
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        Inspector uses small toolbar icons when docking the inspector.
     9        So icons should have different x position.
     10
     11        No tests because no behavior change is expected.
     12
     13        * inspector/front-end/inspector.css: Add missing 'background-position-x' values.
     14        (body.dock-to-bottom .toolbar-item.profiles .toolbar-icon):
     15        (body.dock-to-bottom .toolbar-item.cpu-profiler .toolbar-icon):
     16        (body.dock-to-bottom .toolbar-item.css-profiler .toolbar-icon):
     17        (body.dock-to-bottom .toolbar-item.heap-profiler .toolbar-icon):
     18        (body.dock-to-bottom .toolbar-item.canvas-profiler .toolbar-icon):
     19        (body.dock-to-bottom .toolbar-item.memory-chart-profiler .toolbar-icon):
     20        (body.dock-to-bottom .toolbar-item.memory-snapshot-profiler .toolbar-icon):
     21
    1222013-04-17  Jaehun Lim  <ljaehun.lim@samsung.com>
    223
  • trunk/Source/WebCore/inspector/front-end/inspector.css

    r147478 r148668  
    511511}
    512512
     513body.dock-to-bottom .toolbar-item.profiles .toolbar-icon {
     514    background-position-x: -120px;
     515}
     516
    513517.toolbar-item.cpu-profiler .toolbar-icon {
    514518    background-position-x: -160px;
    515519}
    516520
     521body.dock-to-bottom .toolbar-item.cpu-profiler .toolbar-icon {
     522    background-position-x: -120px;
     523}
     524
    517525.toolbar-item.css-profiler .toolbar-icon {
    518526    background-position-x: -160px;
    519527}
    520528
     529body.dock-to-bottom .toolbar-item.css-profiler .toolbar-icon {
     530    background-position-x: -120px;
     531}
     532
    521533.toolbar-item.heap-profiler .toolbar-icon {
    522534    background-position-x: -160px;
    523535}
    524536
     537body.dock-to-bottom .toolbar-item.heap-profiler .toolbar-icon {
     538    background-position-x: -120px;
     539}
     540
    525541.toolbar-item.canvas-profiler .toolbar-icon {
    526542    background-position-x: -160px;
    527543}
    528544
     545body.dock-to-bottom .toolbar-item.canvas-profiler .toolbar-icon {
     546    background-position-x: -120px;
     547}
     548
    529549.toolbar-item.memory-chart-profiler .toolbar-icon {
    530550    background-position-x: -160px;
    531551}
    532552
     553body.dock-to-bottom .toolbar-item.memory-chart-profiler .toolbar-icon {
     554    background-position-x: -120px;
     555}
     556
    533557.toolbar-item.memory-snapshot-profiler .toolbar-icon {
    534558    background-position-x: -160px;
    535559}
    536560
    537 body.dock-to-bottom .toolbar-item.profiles .toolbar-icon {
     561body.dock-to-bottom .toolbar-item.memory-snapshot-profiler .toolbar-icon {
    538562    background-position-x: -120px;
    539563}
Note: See TracChangeset for help on using the changeset viewer.