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

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

Issue 2527763003: [DevTools] Turn links into spans to prevent default behavior. (Closed)
Patch Set: fixed comments Created 4 years 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 .network-cell-subtitle { 137 .network-cell-subtitle {
138 font-weight: normal; 138 font-weight: normal;
139 color: gray; 139 color: gray;
140 } 140 }
141 141
142 .network-error-row, 142 .network-error-row,
143 .network-error-row .network-cell-subtitle { 143 .network-error-row .network-cell-subtitle {
144 color: rgb(230, 0, 0); 144 color: rgb(230, 0, 0);
145 } 145 }
146 146
147 .initiator-column a { 147 .initiator-column .devtools-link {
148 color: inherit; 148 color: inherit;
149 } 149 }
150 150
151 .network-log-grid.data-grid tr.selected, 151 .network-log-grid.data-grid tr.selected,
152 .network-log-grid.data-grid tr.selected .network-cell-subtitle, 152 .network-log-grid.data-grid tr.selected .network-cell-subtitle,
153 .network-log-grid.data-grid tr.selected .network-dim-cell { 153 .network-log-grid.data-grid tr.selected .network-dim-cell {
154 color: inherit !important; 154 color: inherit !important;
155 } 155 }
156 156
157 .network-log-grid.data-grid:focus tr.selected, 157 .network-log-grid.data-grid:focus tr.selected,
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 391
392 .network-waterfall-header .sort-ascending.sort-order-icon { 392 .network-waterfall-header .sort-ascending.sort-order-icon {
393 display: block; 393 display: block;
394 background-position: -4px -111px; 394 background-position: -4px -111px;
395 } 395 }
396 396
397 .network-waterfall-header .sort-descending.sort-order-icon { 397 .network-waterfall-header .sort-descending.sort-order-icon {
398 display: block; 398 display: block;
399 background-position: -20px -99px; 399 background-position: -20px -99px;
400 } 400 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698