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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/networkLogView.css

Issue 2412013002: [Devtools] Added hover support for network timeline experiment (Closed)
Patch Set: Changes Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 617
618 #network-container { 618 #network-container {
619 overflow: hidden; 619 overflow: hidden;
620 } 620 }
621 621
622 /* Brief mode peculiarities. */ 622 /* Brief mode peculiarities. */
623 #network-container.brief-mode .network-timeline-grid { 623 #network-container.brief-mode .network-timeline-grid {
624 display: none; 624 display: none;
625 } 625 }
626 626
627 .network-log-grid.data-grid .data-container tr:not(.data-grid-filler-row):not(.s elected):hover { 627 .network-log-grid.data-grid .data-container tr:not(.data-grid-filler-row):not(.s elected).hover {
628 background-color: rgba(56, 121, 217, 0.1); 628 background-color: #ebf2fc;
629 } 629 }
630 630
631 .network-log-grid .network-node-on-initiator-path { 631 .network-log-grid .network-node-on-initiator-path {
632 background-color: hsla(120, 68%, 54%, 0.2) !important; 632 background-color: hsla(120, 68%, 54%, 0.2) !important;
633 } 633 }
634 634
635 .network-log-grid .network-node-on-initiated-path { 635 .network-log-grid .network-node-on-initiated-path {
636 background-color: hsla(0, 68%, 54%, 0.2) !important; 636 background-color: hsla(0, 68%, 54%, 0.2) !important;
637 } 637 }
638 638
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 699
700 .network-timeline-header .sort-ascending.sort-order-icon { 700 .network-timeline-header .sort-ascending.sort-order-icon {
701 display: block; 701 display: block;
702 background-position: -4px -111px; 702 background-position: -4px -111px;
703 } 703 }
704 704
705 .network-timeline-header .sort-descending.sort-order-icon { 705 .network-timeline-header .sort-descending.sort-order-icon {
706 display: block; 706 display: block;
707 background-position: -20px -99px; 707 background-position: -20px -99px;
708 } 708 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698