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

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

Issue 2353033004: [DevTools] Expose left and right toolbar in TabbedPane. (Closed)
Patch Set: review comment Created 4 years, 2 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 .scripts-debug-toolbar-drawer.expanded { 48 .scripts-debug-toolbar-drawer.expanded {
49 margin-top: 0; 49 margin-top: 0;
50 } 50 }
51 51
52 .scripts-debug-toolbar-drawer > label { 52 .scripts-debug-toolbar-drawer > label {
53 display: flex; 53 display: flex;
54 padding-left: 3px; 54 padding-left: 3px;
55 height: 28px; 55 height: 28px;
56 } 56 }
57 57
58 .sources-editor-tabstrip-left {
59 width: 22px;
60 }
61
62 .sources-editor-tabstrip-right {
63 width: 36px;
64 }
65
66 .function-location-link { 58 .function-location-link {
67 float: right; 59 float: right;
68 margin-left: 10px; 60 margin-left: 10px;
69 } 61 }
70 62
71 .function-location-step-into { 63 .function-location-step-into {
72 position: relative; 64 position: relative;
73 height: 14px; 65 height: 14px;
74 transform: rotate(-90deg); 66 transform: rotate(-90deg);
75 } 67 }
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 text-align: center; 265 text-align: center;
274 font-style: italic; 266 font-style: italic;
275 padding: 4px; 267 padding: 4px;
276 color: #888; 268 color: #888;
277 background-color: #FFFFC2; 269 background-color: #FFFFC2;
278 } 270 }
279 271
280 .event-listeners-sidebar-pane .toolbar { 272 .event-listeners-sidebar-pane .toolbar {
281 border-bottom: 1px solid #eee; 273 border-bottom: 1px solid #eee;
282 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698