Title: [143864] trunk/Source/WebCore
Revision
143864
Author
[email protected]
Date
2013-02-24 05:18:17 -0800 (Sun, 24 Feb 2013)

Log Message

Web Inspector: [Timeline] Shrink CPU bars to make it easier to see frame information popup.
https://bugs.webkit.org/show_bug.cgi?id=110561

Reviewed by Pavel Feldman.

Area that causes frame information popup is overly "shaded" by CPU bars.

* inspector/front-end/timelinePanel.css:
(.timeline-cpu-bars .timeline-graph-bar): Reduce height and opacity.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143863 => 143864)


--- trunk/Source/WebCore/ChangeLog	2013-02-24 13:01:06 UTC (rev 143863)
+++ trunk/Source/WebCore/ChangeLog	2013-02-24 13:18:17 UTC (rev 143864)
@@ -1,3 +1,15 @@
+2013-02-24  Eugene Klyuchnikov  <[email protected]>
+
+        Web Inspector: [Timeline] Shrink CPU bars to make it easier to see frame information popup.
+        https://bugs.webkit.org/show_bug.cgi?id=110561
+
+        Reviewed by Pavel Feldman.
+
+        Area that causes frame information popup is overly "shaded" by CPU bars.
+
+        * inspector/front-end/timelinePanel.css:
+        (.timeline-cpu-bars .timeline-graph-bar): Reduce height and opacity.
+
 2013-02-24  Andreas Kling  <[email protected]>
 
         Reduce include graph of JSDOMBinding.h

Modified: trunk/Source/WebCore/inspector/front-end/timelinePanel.css (143863 => 143864)


--- trunk/Source/WebCore/inspector/front-end/timelinePanel.css	2013-02-24 13:01:06 UTC (rev 143863)
+++ trunk/Source/WebCore/inspector/front-end/timelinePanel.css	2013-02-24 13:18:17 UTC (rev 143864)
@@ -667,9 +667,9 @@
 
 .timeline-cpu-bars .timeline-graph-bar {
     border-color: rgb(192, 192, 192);
-    background-color: rgba(0, 0, 0, 0.15);
-    top: 2px;
-    bottom: 2px;
+    background-color: rgba(0, 0, 0, 0.1);
+    top: 4px;
+    bottom: 4px;
     height: auto;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to