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

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

Issue 1176343002: DevTools: make toolbar button click targets square (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed Created 5 years, 6 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
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 10 matching lines...) Expand all
21 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 21 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 .panel.timeline > .toolbar { 30 .panel.timeline > .toolbar {
31 border-bottom: 1px solid #f1f1f1; 31 border-bottom: 1px solid #dadada;
32 } 32 }
33 33
34 #timeline-overview-panel { 34 #timeline-overview-panel {
35 flex: none; 35 flex: none;
36 position: relative; 36 position: relative;
37 border-bottom: 1px solid rgb(140, 140, 140); 37 border-bottom: 1px solid rgb(140, 140, 140);
38 } 38 }
39 39
40 #timeline-overview-panel .timeline-graph-bar { 40 #timeline-overview-panel .timeline-graph-bar {
41 pointer-events: none; 41 pointer-events: none;
42 } 42 }
43 43
44 .timeline-records-title, .timeline-records-list { 44 .timeline-records-title, .timeline-records-list {
45 background-color: #eee; 45 background-color: #f3f3f3;
46 } 46 }
47 47
48 .timeline-records-title { 48 .timeline-records-title {
49 padding: 3px 3px 3px 5px; 49 padding: 3px 3px 3px 5px;
50 flex: 0 0 19px; 50 flex: 0 0 19px;
51 color: rgb(92, 110, 129); text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; 51 color: rgb(92, 110, 129); text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
52 } 52 }
53 53
54 .timeline-records-list { 54 .timeline-records-list {
55 flex: auto; 55 flex: auto;
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 617
618 .timeline-details-view { 618 .timeline-details-view {
619 color: #333; 619 color: #333;
620 overflow: hidden; 620 overflow: hidden;
621 } 621 }
622 622
623 .timeline-details-view-body { 623 .timeline-details-view-body {
624 flex: auto; 624 flex: auto;
625 overflow: auto; 625 overflow: auto;
626 position: relative; 626 position: relative;
627 background-color: #eee; 627 background-color: #f3f3f3;
628 } 628 }
629 629
630 .timeline-details-view-block { 630 .timeline-details-view-block {
631 flex: none; 631 flex: none;
632 display: flex; 632 display: flex;
633 flex-direction: column; 633 flex-direction: column;
634 } 634 }
635 635
636 .timeline-details-view-row { 636 .timeline-details-view-row {
637 display: flex; 637 display: flex;
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 .timeline-gap { 866 .timeline-gap {
867 flex: none; 867 flex: none;
868 } 868 }
869 869
870 .timeline-filmstrip-preview { 870 .timeline-filmstrip-preview {
871 margin-top: 10px; 871 margin-top: 10px;
872 max-width: 200px; 872 max-width: 200px;
873 max-height: 200px; 873 max-height: 200px;
874 cursor: pointer; 874 cursor: pointer;
875 } 875 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | Source/devtools/front_end/ui/SearchableView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698