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

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

Issue 2894083002: [DevTools] Set row background instead of the table (Closed)
Patch Set: [DevTools] Set row background instead of the table Created 3 years, 7 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
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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 } 502 }
503 503
504 .timeline-tree-view .data-grid .data-container { 504 .timeline-tree-view .data-grid .data-container {
505 overflow-y: scroll; 505 overflow-y: scroll;
506 } 506 }
507 507
508 .timeline-tree-view .data-grid.data-grid-fits-viewport .corner { 508 .timeline-tree-view .data-grid.data-grid-fits-viewport .corner {
509 display: table-cell; 509 display: table-cell;
510 } 510 }
511 511
512 .timeline-tree-view .data-grid table.data { 512 .timeline-tree-view .data-grid .data-grid-odd-row {
513 background: white; 513 background-color: transparent;
514 } 514 }
515 515
516 .timeline-tree-view .data-grid tr:not(.selected) .highlight { 516 .timeline-tree-view .data-grid tr:not(.selected) .highlight {
517 background-color: rgb(255, 230, 179); 517 background-color: rgb(255, 230, 179);
518 } 518 }
519 519
520 .timeline-tree-view .data-grid tr:hover td:not(.bottom-filler-td) { 520 .timeline-tree-view .data-grid tr:hover td:not(.bottom-filler-td) {
521 background-color: rgba(0, 0, 0, 0.1); 521 background-color: rgba(0, 0, 0, 0.1);
522 } 522 }
523 523
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 648
649 .timeline-landing-warning-close { 649 .timeline-landing-warning-close {
650 float: right; 650 float: right;
651 margin-top: -10px; 651 margin-top: -10px;
652 margin-right: -13px; 652 margin-right: -13px;
653 } 653 }
654 654
655 .timeline-landing-warning span[is=ui-icon] { 655 .timeline-landing-warning span[is=ui-icon] {
656 margin: -8px; 656 margin: -8px;
657 } 657 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698