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

Side by Side Diff: Source/devtools/front_end/components/inspectorViewTabbedPane.css

Issue 1175253002: DevTools: move filter bar into the style toolbar (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments addressed. Created 5 years, 6 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
« no previous file with comments | « no previous file | Source/devtools/front_end/elements/ComputedStyleWidget.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 7 .tabbed-pane-header {
8 background-color: #f3f3f3; 8 background-color: #f3f3f3;
9 flex: 0 0 24px; 9 flex: 0 0 24px;
10 } 10 }
11 11
12 :host-context(.material) .tabbed-pane-header { 12 :host-context(.material) .tabbed-pane-header {
13 flex: 0 0 29px; 13 flex: 0 0 29px;
14 overflow: visible; 14 overflow: visible;
15 } 15 }
16 16
17 .tabbed-pane-header-tab {
18 height: 23px;
19 }
20
21 :host-context(.material) .tabbed-pane-header-tab { 17 :host-context(.material) .tabbed-pane-header-tab {
22 height: 28px; 18 height: 28px;
23 border: none; 19 border: none;
24 transition: background-color 100ms cubic-bezier(0.4, 0, 0.2, 1); 20 transition: background-color 100ms cubic-bezier(0.4, 0, 0.2, 1);
25 } 21 }
26 22
27 .tabbed-pane-header-tab:hover { 23 .tabbed-pane-header-tab:hover {
28 background-color: rgba(105, 105, 105, 0.1); 24 background-color: rgba(105, 105, 105, 0.1);
29 } 25 }
30 26
31 .tabbed-pane-header-tab, 27 .tabbed-pane-header-tab,
32 .tabbed-pane-header-tab.selected { 28 .tabbed-pane-header-tab.selected {
33 border-width: 0 2px 0 2px; 29 border: none;
30 height: 23px;
31 margin: 0;
34 background: none; 32 background: none;
35 margin: 0;
36 padding: 0 3px;
37 }
38
39 .tabbed-pane-header-tab,
40 .tabbed-pane-header-tab.selected {
41 border: none; 33 border: none;
42 padding: 0 6px; 34 padding: 0 6px;
43 transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1); 35 transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1);
44 } 36 }
45 37
38 .tabbed-pane-header-tab {
39 color: #666;
40 }
41
42 .tabbed-pane-header-tab.selected {
43 color: #333;
44 }
45
46 :host-context(body.undocked.platform-mac) .tabbed-pane-header { 46 :host-context(body.undocked.platform-mac) .tabbed-pane-header {
47 background-color: rgb(243, 243, 243); 47 background-color: rgb(243, 243, 243);
48 color: #333 !important; 48 color: #333 !important;
49 } 49 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/elements/ComputedStyleWidget.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698