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

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

Issue 1308213007: Devtools UI: Display hint when Network panel is empty (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/network/NetworkLogView.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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 background-color: rgba(56, 121, 217, 0.1); 610 background-color: rgba(56, 121, 217, 0.1);
611 } 611 }
612 612
613 .network-log-grid .network-node-on-initiator-path { 613 .network-log-grid .network-node-on-initiator-path {
614 background-color: hsla(120, 68%, 54%, 0.2) !important; 614 background-color: hsla(120, 68%, 54%, 0.2) !important;
615 } 615 }
616 616
617 .network-log-grid .network-node-on-initiated-path { 617 .network-log-grid .network-node-on-initiated-path {
618 background-color: hsla(0, 68%, 54%, 0.2) !important; 618 background-color: hsla(0, 68%, 54%, 0.2) !important;
619 } 619 }
620
621 .network-status-pane {
622 color: #777;
623 background-color: white;
624 z-index: 500;
625 display: flex;
626 justify-content: center;
627 align-items: center;
628 text-align: center;
629 padding: 0 20px;
630 overflow: auto;
631 }
632
633 .network-status-pane > .recording-hint {
634 font-size: 14px;
635 text-align: center;
636 line-height: 28px;
637 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/NetworkLogView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698