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

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

Issue 2431373006: DevTools: Light blue highlight when hovering in Sources Navigator (Closed)
Patch Set: space 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
« 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 (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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 63
64 :focus .navigator-folder-tree-item.selected .icon { 64 :focus .navigator-folder-tree-item.selected .icon {
65 background: white !important; 65 background: white !important;
66 } 66 }
67 67
68 .tree-outline li { 68 .tree-outline li {
69 min-height: 20px; 69 min-height: 20px;
70 } 70 }
71 71
72 .tree-outline li:hover:not(.selected) .selection {
73 display: block;
74 background-color: rgba(56, 121, 217, 0.1);
75 }
76
72 .navigator-folder-tree-item .icon { 77 .navigator-folder-tree-item .icon {
73 -webkit-mask-position: -64px -120px; 78 -webkit-mask-position: -64px -120px;
74 background-color: #555; 79 background-color: #555;
75 } 80 }
76 81
77 .navigator-domain-tree-item .icon { 82 .navigator-domain-tree-item .icon {
78 -webkit-mask-position: -160px -144px; 83 -webkit-mask-position: -160px -144px;
79 } 84 }
80 85
81 .navigator-frame-tree-item .icon { 86 .navigator-frame-tree-item .icon {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 123
119 .navigator-sm-folder-tree-item .tree-element-title, 124 .navigator-sm-folder-tree-item .tree-element-title,
120 .navigator-sm-script-tree-item .tree-element-title, 125 .navigator-sm-script-tree-item .tree-element-title,
121 .navigator-sm-stylesheet-tree-item .tree-element-title { 126 .navigator-sm-stylesheet-tree-item .tree-element-title {
122 font-style: italic; 127 font-style: italic;
123 } 128 }
124 129
125 :host{ 130 :host{
126 overflow-y: auto; 131 overflow-y: auto;
127 } 132 }
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