Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: Source/devtools/front_end/elementsPanel.css

Issue 211193004: DevTools: move search in styles out of experimental. It proved to be stable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/StylesSidebarPane.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/StylesSidebarPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698