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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorViewTabbedPane.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 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .tabbed-pane-header-tab, 7 .tabbed-pane-header-tab,
8 .tabbed-pane-header-tab.selected { 8 .tabbed-pane-header-tab.selected {
9 height: 26px; 9 height: 26px;
10 margin: 0; 10 margin: 0;
11 background: #f3f3f3; 11 background: #f3f3f3;
12 border: none; 12 border: none;
13 border-left: 2px solid transparent; 13 border-left: 2px solid transparent;
14 border-right: 2px solid transparent; 14 border-right: 2px solid transparent;
15 padding: 0 6px; 15 padding: 0 6px;
16 } 16 }
17 17
18 .tabbed-pane-header-tab.selected { 18 .tabbed-pane-header-tab.selected {
19 border-width: 0 2px 0 2px; 19 border-width: 0 2px 0 2px;
20 } 20 }
21 21
22 .tabbed-pane-header-contents { 22 .tabbed-pane-header-contents {
23 margin-left: 0; 23 margin-left: 0;
24 } 24 }
25
26 .tabbed-pane-left-toolbar {
27 margin-right: 0 !important;
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698