Title: [125419] trunk/Source/WebCore
Revision
125419
Author
[email protected]
Date
2012-08-13 07:54:09 -0700 (Mon, 13 Aug 2012)

Log Message

Web Inspector: when status bar is too narrow, cut panel status bar, not main status bar items
https://bugs.webkit.org/show_bug.cgi?id=93814

Reviewed by Pavel Feldman.

- set shrink factor of bottom-status-bar-container to 1;
- set bottom-status-bar-container's width to 0 to workaround for flex-basis being ignored;

* inspector/front-end/inspector.css:
(#bottom-status-bar-container):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (125418 => 125419)


--- trunk/Source/WebCore/ChangeLog	2012-08-13 14:19:51 UTC (rev 125418)
+++ trunk/Source/WebCore/ChangeLog	2012-08-13 14:54:09 UTC (rev 125419)
@@ -1,3 +1,16 @@
+2012-08-13  Andrey Kosyakov  <[email protected]>
+
+        Web Inspector: when status bar is too narrow, cut panel status bar, not main status bar items
+        https://bugs.webkit.org/show_bug.cgi?id=93814
+
+        Reviewed by Pavel Feldman.
+
+        - set shrink factor of bottom-status-bar-container to 1;
+        - set bottom-status-bar-container's width to 0 to workaround for flex-basis being ignored;
+
+        * inspector/front-end/inspector.css:
+        (#bottom-status-bar-container):
+
 2012-08-13  Yury Semikhatsky  <[email protected]>
 
         Web Inspector: add memory instrumentation for Attribute

Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (125418 => 125419)


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2012-08-13 14:19:51 UTC (rev 125418)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2012-08-13 14:54:09 UTC (rev 125419)
@@ -2573,7 +2573,9 @@
 }
 
 #bottom-status-bar-container {
-    -webkit-flex: 1 0;
+    -webkit-flex: 1 1 0;
+    width: 0;
+    overflow: hidden;
 }
 
 .search-status-bar-item {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to