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

Unified Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: move unrelated fix to another CL Created 3 years, 6 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: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
index f73b1ec1caf631b0fd99154565e79ca031b8da72..acd4920b74fe26a9b316d048294ec62a3b3bb4ee 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
@@ -4,7 +4,7 @@
<link rel="import" href="chrome://resources/cr_elements/icons.html">
<link rel="import" href="chrome://resources/html/i18n_behavior.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html">
<link rel="import" href="../settings_shared_css.html">
<dom-module id="bluetooth-device-list-item">
@@ -32,9 +32,10 @@
</div>
<span hidden$="[[!device.connecting]]">$i18n{bluetoothConnecting}</span>
<div hidden$="[[!device.paired]]">
- <paper-icon-button icon="cr:more-vert" on-tap="onMenuButtonTap_"
- tabindex$="[[tabindex]]" title="$i18n{moreActions}">
- </paper-icon-button>
+ <button is="paper-icon-button-light" class="icon-more-vert"
+ on-tap="onMenuButtonTap_" tabindex$="[[tabindex]]"
+ title="$i18n{moreActions}">
+ </button>
<dialog id="dotsMenu" is="cr-action-menu">
<button class="dropdown-item" role="option"
on-tap="onConnectActionTap_">

Powered by Google App Engine
This is Rietveld 408576698