Web Inspector: console panel's scroller is not properly aligned.
authorpfeldman@chromium.org <pfeldman@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 11:37:06 +0000 (11:37 +0000)
committerpfeldman@chromium.org <pfeldman@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 11:37:06 +0000 (11:37 +0000)
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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95611 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/inspector/front-end/inspector.css

index 83b55ab..b497441 100644 (file)
@@ -1,3 +1,15 @@
+2011-09-21  Pavel Feldman  <pfeldman@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  <hclam@chromium.org>
 
         https://bugs.webkit.org/show_bug.cgi?id=68081
index 644a686..c2751a9 100644 (file)
@@ -625,13 +625,22 @@ body.platform-linux .monospace, body.platform-linux .source-code {
     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 @@ body.platform-linux .monospace, body.platform-linux .source-code {
     -webkit-text-size-adjust: auto;
 }
 
+#drawer #console-messages {
+    bottom: 23px;
+}
+
 #console-prompt {
     position: relative;
     padding: 1px 22px 1px 0px;