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

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

Issue 2750103002: DevTools: update debugger sidepane style for paused on exception (Closed)
Patch Set: Created 3 years, 9 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 25 matching lines...) Expand all
36 overflow: hidden; 36 overflow: hidden;
37 } 37 }
38 38
39 .scripts-debug-toolbar-drawer { 39 .scripts-debug-toolbar-drawer {
40 flex: 0 0 52px; 40 flex: 0 0 52px;
41 -webkit-transition: margin-top 0.1s ease-in-out; 41 -webkit-transition: margin-top 0.1s ease-in-out;
42 margin-top: -26px; 42 margin-top: -26px;
43 padding-top: 25px; 43 padding-top: 25px;
44 background-color: white; 44 background-color: white;
45 overflow: hidden; 45 overflow: hidden;
46 white-space: nowrap;
46 } 47 }
47 48
48 .scripts-debug-toolbar-drawer.expanded { 49 .scripts-debug-toolbar-drawer.expanded {
49 margin-top: 0; 50 margin-top: 0;
50 } 51 }
51 52
52 .scripts-debug-toolbar-drawer > label { 53 .scripts-debug-toolbar-drawer > label {
53 display: flex; 54 display: flex;
54 padding-left: 3px; 55 padding-left: 3px;
55 height: 28px; 56 height: 28px;
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 } 202 }
202 203
203 .scope-chain-sidebar-pane-section { 204 .scope-chain-sidebar-pane-section {
204 padding: 2px 4px 2px 4px; 205 padding: 2px 4px 2px 4px;
205 flex: none; 206 flex: none;
206 } 207 }
207 208
208 .event-listeners-sidebar-pane .toolbar { 209 .event-listeners-sidebar-pane .toolbar {
209 border-bottom: 1px solid #eee; 210 border-bottom: 1px solid #eee;
210 } 211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698