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

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

Issue 270693003: Timeline: make frames in TimelineView selectable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: bail out early if selection is of wrong type Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineView.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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 pointer-events: none; 532 pointer-events: none;
533 } 533 }
534 534
535 .timeline-frame-container { 535 .timeline-frame-container {
536 height: 19px; 536 height: 19px;
537 overflow: hidden; 537 overflow: hidden;
538 background-color: rgb(220, 220, 220); 538 background-color: rgb(220, 220, 220);
539 opacity: 0.8; 539 opacity: 0.8;
540 color: black; 540 color: black;
541 text-align: center; 541 text-align: center;
542 padding-top: 3px;
543 z-index: 220; 542 z-index: 220;
544 pointer-events: auto; 543 pointer-events: auto;
545 } 544 }
546 545
547 .timeline-frame-strip { 546 .timeline-frame-strip {
548 position: absolute; 547 position: absolute;
549 height: 19px; 548 height: 19px;
549 padding-top: 3px;
550 }
551
552 .timeline-frame-strip.selected {
553 background-color: rgb(56, 121, 217);
554 color: white;
550 } 555 }
551 556
552 #timeline-grid-header { 557 #timeline-grid-header {
553 pointer-events: none; 558 pointer-events: none;
554 height: 19px; 559 height: 19px;
555 } 560 }
556 561
557 #timeline-graph-records-header { 562 #timeline-graph-records-header {
558 pointer-events: none; 563 pointer-events: none;
559 height: 19px; 564 height: 19px;
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 z-index: 500; 782 z-index: 500;
778 display: flex; 783 display: flex;
779 justify-content: center; 784 justify-content: center;
780 align-items: center; 785 align-items: center;
781 } 786 }
782 787
783 .revealable-link { 788 .revealable-link {
784 text-decoration: underline; 789 text-decoration: underline;
785 cursor: pointer; 790 cursor: pointer;
786 } 791 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698