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

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

Issue 1220713003: DevTools: remove hover effect from panel selector until migration to material look. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 27px; 9 flex: 0 0 27px;
10 overflow: visible; 10 overflow: visible;
11 } 11 }
12 12
13 .tabbed-pane-header-tab:hover {
14 background-color: rgba(105, 105, 105, 0.1) !important;
15 }
16
17 .tabbed-pane-header-tab, 13 .tabbed-pane-header-tab,
18 .tabbed-pane-header-tab.selected { 14 .tabbed-pane-header-tab.selected {
19 height: 26px; 15 height: 26px;
20 margin: 0; 16 margin: 0;
21 background: none; 17 background: none;
22 border: none; 18 border: none;
23 border-left: 2px solid transparent; 19 border-left: 2px solid transparent;
24 border-right: 2px solid transparent; 20 border-right: 2px solid transparent;
25 padding: 0 6px; 21 padding: 0 6px;
26 } 22 }
27 23
28 .tabbed-pane-header-tab { 24 .tabbed-pane-header-tab {
29 color: #5a5a5a; 25 color: #5a5a5a;
30 } 26 }
31 27
32 .tabbed-pane-header-tab.selected { 28 .tabbed-pane-header-tab.selected {
33 color: #333; 29 color: #333;
34 border-width: 0 2px 0 2px; 30 border-width: 0 2px 0 2px;
35 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2; 31 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2;
36 } 32 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698