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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/sourcesPanel.css

Issue 2609653002: [DevTools] Migrate CallStackSidebarPane to UI.ListControl. (Closed)
Patch Set: review fixes Created 3 years, 11 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 font-weight: normal; 247 font-weight: normal;
248 word-wrap: break-word; 248 word-wrap: break-word;
249 white-space: normal; 249 white-space: normal;
250 } 250 }
251 251
252 .scope-chain-sidebar-pane-section { 252 .scope-chain-sidebar-pane-section {
253 padding: 2px 4px 2px 4px; 253 padding: 2px 4px 2px 4px;
254 flex: none; 254 flex: none;
255 } 255 }
256 256
257 .hidden-callframes-message {
258 text-align: center;
259 font-style: italic;
260 padding: 4px;
261 color: #888;
262 background-color: #FFFFC2;
263 }
264
265 .event-listeners-sidebar-pane .toolbar { 257 .event-listeners-sidebar-pane .toolbar {
266 border-bottom: 1px solid #eee; 258 border-bottom: 1px solid #eee;
267 } 259 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698