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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css

Issue 2545983002: DevTools: Use TextPrompt for FilterBar instead of input element (Closed)
Patch Set: Use textWithCurrentSuggestion Created 4 years 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
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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 588
589 .timeline-tree-view .data-grid .selected .background-bar { 589 .timeline-tree-view .data-grid .selected .background-bar {
590 background-color: rgba(255, 255, 255, 0.25); 590 background-color: rgba(255, 255, 255, 0.25);
591 border-bottom-color: transparent; 591 border-bottom-color: transparent;
592 } 592 }
593 593
594 .timeline-tree-view .timeline-details-view-body .full-widget-dimmed-banner { 594 .timeline-tree-view .timeline-details-view-body .full-widget-dimmed-banner {
595 background-color: inherit; 595 background-color: inherit;
596 } 596 }
597 597
598 .timeline-details #filter-input-field { 598 .timeline-details .filter-input-field {
599 width: 120px; 599 width: 120px;
600 } 600 }
601 601
602 .timeline-tree-view .data-grid .header-container { 602 .timeline-tree-view .data-grid .header-container {
603 height: 21px; 603 height: 21px;
604 } 604 }
605 605
606 .timeline-tree-view .data-grid .data-container { 606 .timeline-tree-view .data-grid .data-container {
607 top: 21px; 607 top: 21px;
608 } 608 }
609 609
610 .timeline-tree-view .data-grid th { 610 .timeline-tree-view .data-grid th {
611 border-bottom: 1px solid #ddd; 611 border-bottom: 1px solid #ddd;
612 background-color: #f3f3f3 612 background-color: #f3f3f3
613 } 613 }
614 614
615 .timeline-stack-view-header { 615 .timeline-stack-view-header {
616 height: 26px; 616 height: 26px;
617 background-color: white; 617 background-color: white;
618 padding: 6px 10px; 618 padding: 6px 10px;
619 color: #5a5a5a; 619 color: #5a5a5a;
620 white-space: nowrap; 620 white-space: nowrap;
621 } 621 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698