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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleWidget.js

Issue 2776883003: DevTools: normalize medium 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/elements/computedStyleSidebarPane.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleWidget.js
index 36817d691339160abfc7f9ed0878cece8d7cda4a..b83bedc79b3a556ce0a1c5e66b74a47cd7e208aa 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleWidget.js
@@ -201,7 +201,7 @@ Elements.ComputedStyleWidget = class extends UI.ThrottledWidget {
treeElement.listItemElement.addEventListener('mousedown', e => e.consume(), false);
treeElement.listItemElement.addEventListener('dblclick', e => e.consume(), false);
treeElement.listItemElement.addEventListener('click', handleClick.bind(null, treeElement), false);
- var gotoSourceElement = UI.Icon.create('smallicon-arrow-in-circle', 'goto-source-icon');
+ var gotoSourceElement = UI.Icon.create('mediumicon-arrow-in-circle', 'goto-source-icon');
gotoSourceElement.addEventListener('click', this._navigateToSource.bind(this, activeProperty));
propertyValueElement.appendChild(gotoSourceElement);
if (expandedProperties.has(propertyName))
@@ -272,7 +272,7 @@ Elements.ComputedStyleWidget = class extends UI.ThrottledWidget {
var valueElement = renderer.renderValue();
valueElement.classList.add('property-trace-value');
valueElement.addEventListener('click', this._navigateToSource.bind(this, property), false);
- var gotoSourceElement = UI.Icon.create('smallicon-arrow-in-circle', 'goto-source-icon');
+ var gotoSourceElement = UI.Icon.create('mediumicon-arrow-in-circle', 'goto-source-icon');
gotoSourceElement.addEventListener('click', this._navigateToSource.bind(this, property));
valueElement.insertBefore(gotoSourceElement, valueElement.firstChild);
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/elements/computedStyleSidebarPane.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698