Title: [95611] trunk/Source/WebCore
Revision
95611
Author
pfeld...@chromium.org
Date
2011-09-21 04:37:06 -0700 (Wed, 21 Sep 2011)

Log Message

Web Inspector: console panel's scroller is not properly aligned.
https://bugs.webkit.org/show_bug.cgi?id=68448

Reviewed by Yury Semikhatsky.

* inspector/front-end/inspector.css:
(#console-view):
(#console-messages):
(#drawer #console-messages):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (95610 => 95611)


--- trunk/Source/WebCore/ChangeLog	2011-09-21 11:25:43 UTC (rev 95610)
+++ trunk/Source/WebCore/ChangeLog	2011-09-21 11:37:06 UTC (rev 95611)
@@ -1,3 +1,15 @@
+2011-09-21  Pavel Feldman  <pfeld...@google.com>
+
+        Web Inspector: console panel's scroller is not properly aligned.
+        https://bugs.webkit.org/show_bug.cgi?id=68448
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/front-end/inspector.css:
+        (#console-view):
+        (#console-messages):
+        (#drawer #console-messages):
+
 2011-09-20  Alpha Lam  <hc...@chromium.org>
 
         https://bugs.webkit.org/show_bug.cgi?id=68081

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


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2011-09-21 11:25:43 UTC (rev 95610)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2011-09-21 11:37:06 UTC (rev 95611)
@@ -625,13 +625,22 @@
     font-family: dejavu sans mono, monospace;
 }
 
+#console-view {
+    position: absolute;
+    top: 0;
+    bottom: 0;
+    left: 0;
+    right: 0;
+    overflow-y: auto;
+}
+
 #console-messages {
     position: absolute;
     z-index: 0;
     top: 0;
     left: 0;
     right: 0;
-    bottom: 23px;
+    bottom: 0;
     padding: 2px 0;
     overflow-y: overlay;
     word-wrap: break-word;
@@ -639,6 +648,10 @@
     -webkit-text-size-adjust: auto;
 }
 
+#drawer #console-messages {
+    bottom: 23px;
+}
+
 #console-prompt {
     position: relative;
     padding: 1px 22px 1px 0px;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to