OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 flex: 1; | 602 flex: 1; |
603 overflow-y: auto; | 603 overflow-y: auto; |
604 position: relative; | 604 position: relative; |
605 } | 605 } |
606 | 606 |
607 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar, | 607 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar, |
608 .sidebar-pane.composite .metrics-and-styles .sidebar-pane-toolbar { | 608 .sidebar-pane.composite .metrics-and-styles .sidebar-pane-toolbar { |
609 position: absolute; | 609 position: absolute; |
610 } | 610 } |
611 | 611 |
612 input.filter-box { | 612 .sidebar-pane-filter-box { |
613 outline: none !important; | 613 display: flex; |
| 614 border-top: 1px solid rgb(191, 191, 191); |
| 615 flex-basis: 19px; |
614 } | 616 } |
615 | 617 |
616 .sidebar-pane .filter-box-container > .filter-box { | 618 .sidebar-pane-filter-box > input { |
617 margin: 1px 1px 1px 2px; | 619 outline: none !important; |
| 620 border: none; |
| 621 width: 100%; |
| 622 margin: 0 4px; |
| 623 background: transparent; |
| 624 } |
| 625 |
| 626 .styles-filter-engaged { |
| 627 background-color: rgba(255, 255, 0, 0.5); |
618 } | 628 } |
619 | 629 |
620 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar { | 630 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar { |
621 margin-top: 4px; | 631 margin-top: 4px; |
622 margin-bottom: -4px; | 632 margin-bottom: -4px; |
623 position: relative; | 633 position: relative; |
624 } | 634 } |
625 | 635 |
626 .sidebar-pane.composite .platform-fonts .body { | 636 .sidebar-pane.composite .platform-fonts .body { |
627 padding: 1ex; | 637 padding: 1ex; |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 | 728 |
719 .styles-clipboard-only { | 729 .styles-clipboard-only { |
720 display: inline-block; | 730 display: inline-block; |
721 width: 0; | 731 width: 0; |
722 opacity: 0; | 732 opacity: 0; |
723 } | 733 } |
724 | 734 |
725 li.child-editing .styles-clipboard-only { | 735 li.child-editing .styles-clipboard-only { |
726 display: none; | 736 display: none; |
727 } | 737 } |
OLD | NEW |