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

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

Issue 1116003002: [DevTools] Simplify getting back to default network order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 573
582 #network-container { 574 #network-container {
583 overflow-y: auto; 575 overflow-y: auto;
584 overflow-x: hidden; 576 overflow-x: hidden;
585 } 577 }
586 578
587 /* Brief mode peculiarities. */ 579 /* Brief mode peculiarities. */
588 #network-container.brief-mode .network-timeline-grid { 580 #network-container.brief-mode .network-timeline-grid {
589 display: none; 581 display: none;
590 } 582 }
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