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

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

Issue 1803813002: [DevTools] Added keyboard search while in sources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 .navigator-image-tree-item .icon, 98 .navigator-image-tree-item .icon,
99 .navigator-font-tree-item .icon { 99 .navigator-font-tree-item .icon {
100 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); 100 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%));
101 } 101 }
102 102
103 .navigator-sm-folder-tree-item .tree-element-title, 103 .navigator-sm-folder-tree-item .tree-element-title,
104 .navigator-sm-script-tree-item .tree-element-title, 104 .navigator-sm-script-tree-item .tree-element-title,
105 .navigator-sm-stylesheet-tree-item .tree-element-title { 105 .navigator-sm-stylesheet-tree-item .tree-element-title {
106 font-style: italic; 106 font-style: italic;
107 } 107 }
108
109 .navigator-tree-item-highlight {
110 background-color: #FFA;
111 color: #00A !important;
lushnikov 2016/03/14 20:56:38 can we increase selector specificity instead of us
112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698