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

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

Issue 2876983002: DevTools: group by frame, not product in the network panel. (Closed)
Patch Set: Created 3 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
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 .network-film-strip { 118 .network-film-strip {
119 border-bottom: solid 1px #cdcdcd; 119 border-bottom: solid 1px #cdcdcd;
120 flex: none !important; 120 flex: none !important;
121 } 121 }
122 122
123 .network-blocked-urls { 123 .network-blocked-urls {
124 border-top: 1px solid #dadada; 124 border-top: 1px solid #dadada;
125 flex: 104px 0 0; 125 flex: 104px 0 0;
126 } 126 }
127
128 .data-grid tr td:first-child {
allada 2017/05/11 23:58:36 These should all go into networkLogView.css
allada 2017/05/11 23:58:37 This should be something like: .network-log-grid.
129 border-left: 3px solid transparent !important;
130 padding-left: 2px;
131 }
132
133 .network-group-by-frame .network-row-with-product td:first-child {
134 border-left: 3px solid #FFC107 !important;
135 }
136
137 .network-group-by-frame .network-row-from-frame td:first-child {
138 border-left: 3px solid #9E9E9E !important;
139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698