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

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

Issue 1048823002: [DevTools] Simplify getting back to default network order. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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) 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 } 87 }
88 88
89 .network-log-grid.data-grid.small .header-container { 89 .network-log-grid.data-grid.small .header-container {
90 height: 23px; 90 height: 23px;
91 } 91 }
92 92
93 .network-log-grid.data-grid.small .data-container { 93 .network-log-grid.data-grid.small .data-container {
94 top: 23px; 94 top: 23px;
95 } 95 }
96 96
97 .network-log-grid.data-grid select {
98 -webkit-appearance: none;
99 background-color: transparent;
100 border: none;
101 width: 100%;
102 color: inherit;
103 }
104
105 .network-log-grid.data-grid .name-column { 97 .network-log-grid.data-grid .name-column {
106 cursor: pointer; 98 cursor: pointer;
107 } 99 }
108 100
109 .network-log-grid.data-grid .timeline-column { 101 .network-log-grid.data-grid td.timeline-column {
110 padding: 1px 0; 102 padding: 1px 0;
111 } 103 }
112 104
113 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h over { 105 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:h over {
114 text-decoration: underline; 106 text-decoration: underline;
115 } 107 }
116 108
117 .network-log-grid.data-grid.small .network-graph-side { 109 .network-log-grid.data-grid.small .network-graph-side {
118 height: 19px; 110 height: 19px;
119 } 111 }
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 577
586 #network-container { 578 #network-container {
587 overflow-y: auto; 579 overflow-y: auto;
588 overflow-x: hidden; 580 overflow-x: hidden;
589 } 581 }
590 582
591 /* Brief mode peculiarities. */ 583 /* Brief mode peculiarities. */
592 #network-container.brief-mode .network-timeline-grid { 584 #network-container.brief-mode .network-timeline-grid {
593 display: none; 585 display: none;
594 } 586 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/NetworkTimeCalculator.js ('k') | Source/devtools/front_end/ui_lazy/DataGrid.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698