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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js

Issue 2775733002: DevTools: minor cleanup for the icons (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js b/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js
index fe935c934beea8834fba4686cbeef442315d8e16..83480917752f833da1f3c029afc053e21bce2561 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/AdvancedSearchView.js
@@ -32,7 +32,7 @@ Sources.AdvancedSearchView = class extends UI.VBox {
var searchIcon = UI.Icon.create('smallicon-search', 'search-icon');
this._searchPanelElement.appendChild(searchIcon);
- this._searchInputClearElement = UI.Icon.create('smallicon-clear-input', 'search-cancel-button');
+ this._searchInputClearElement = UI.Icon.create('smallicon-gray-cross-hover', 'search-cancel-button');
this._searchInputClearElement.classList.add('hidden');
this._searchInputClearElement.addEventListener('click', this._onSearchInputClear.bind(this), false);
var cancelButtonContainer = this._searchPanelElement.createChild('div', 'search-cancel-button-container');

Powered by Google App Engine
This is Rietveld 408576698