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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/Toolbar.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/ui/Toolbar.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
index 75ed17ce70855996d8d1c5d8aa825e5a35cf6006..427bc4a6800290b5e33ae74320e4157ddd614cfe 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
@@ -585,7 +585,7 @@ UI.ToolbarInput = class extends UI.ToolbarItem {
_setupSearchControls() {
var clearButton = this.element.createChild('div', 'toolbar-input-clear-button');
- clearButton.appendChild(UI.Icon.create('smallicon-clear-input', 'search-cancel-button'));
+ clearButton.appendChild(UI.Icon.create('smallicon-gray-cross-hover', 'search-cancel-button'));
clearButton.addEventListener('click', () => this._internalSetValue('', true));
this.input.addEventListener('keydown', event => this._onKeydownCallback(event));
}

Powered by Google App Engine
This is Rietveld 408576698