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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/profiler/heapProfiler.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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 text-align: right; 173 text-align: right;
174 } 174 }
175 175
176 .heap-allocation-stack .stack-frame { 176 .heap-allocation-stack .stack-frame {
177 display: flex; 177 display: flex;
178 justify-content: space-between; 178 justify-content: space-between;
179 border-bottom: 1px solid rgb(240, 240, 240); 179 border-bottom: 1px solid rgb(240, 240, 240);
180 padding: 2px; 180 padding: 2px;
181 } 181 }
182 182
183 .heap-allocation-stack .stack-frame a { 183 .heap-allocation-stack .stack-frame .devtools-link {
184 color: rgb(33%, 33%, 33%); 184 color: rgb(33%, 33%, 33%);
185 } 185 }
186 186
187 .no-heap-allocation-stack { 187 .no-heap-allocation-stack {
188 padding: 5px; 188 padding: 5px;
189 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698