Changeset 95611 in webkit


Ignore:
Timestamp:
Sep 21, 2011 4:37:06 AM (13 years ago)
Author:
pfeldman@chromium.org
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95608 r95611  
     12011-09-21  Pavel Feldman  <pfeldman@google.com>
     2
     3        Web Inspector: console panel's scroller is not properly aligned.
     4        https://bugs.webkit.org/show_bug.cgi?id=68448
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        * inspector/front-end/inspector.css:
     9        (#console-view):
     10        (#console-messages):
     11        (#drawer #console-messages):
     12
    1132011-09-20  Alpha Lam  <hclam@chromium.org>
    214
  • trunk/Source/WebCore/inspector/front-end/inspector.css

    r94842 r95611  
    626626}
    627627
     628#console-view {
     629    position: absolute;
     630    top: 0;
     631    bottom: 0;
     632    left: 0;
     633    right: 0;
     634    overflow-y: auto;
     635}
     636
    628637#console-messages {
    629638    position: absolute;
     
    632641    left: 0;
    633642    right: 0;
    634     bottom: 23px;
     643    bottom: 0;
    635644    padding: 2px 0;
    636645    overflow-y: overlay;
     
    638647    -webkit-user-select: text;
    639648    -webkit-text-size-adjust: auto;
     649}
     650
     651#drawer #console-messages {
     652    bottom: 23px;
    640653}
    641654
Note: See TracChangeset for help on using the changeset viewer.