Changeset 196634 in webkit


Ignore:
Timestamp:
Feb 16, 2016 8:42:10 AM (8 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Increase the width of the find banner's search field
https://bugs.webkit.org/show_bug.cgi?id=154284

Reviewed by Timothy Hatcher.

  • UserInterface/Views/FindBanner.css:

(.find-banner > input[type="search"]):
Keep the minimum width the same as the current width.

(body .find-banner.console-find-banner):
Overwrite ".navigation-bar .item {flex-wrap: nowrap}".

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r196620 r196634  
     12016-02-16  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Increase the width of the find banner's search field
     4        https://bugs.webkit.org/show_bug.cgi?id=154284
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/FindBanner.css:
     9        (.find-banner > input[type="search"]):
     10        Keep the minimum width the same as the current width.
     11
     12        (body .find-banner.console-find-banner):
     13        Overwrite ".navigation-bar .item {flex-wrap: nowrap}".
     14
    1152016-02-15  Nikita Vasilyev  <nvasilyev@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Views/FindBanner.css

    r193913 r196634  
    8080    margin: 1px 4px;
    8181
    82     width: 143px;
     82    width: 30vw;
     83    min-width: 143px;
     84    max-width: 210px;
    8385    height: 19px;
    8486
     
    194196    top: auto;
    195197    border: 0;
     198}
     199
     200body .find-banner.console-find-banner {
     201    flex-wrap: nowrap;
    196202}
    197203
Note: See TracChangeset for help on using the changeset viewer.