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

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

Issue 2375493003: MD Settings: Fix rendering of popup menus inside iron-lists. (Closed)
Patch Set: Static z index. Created 4 years, 3 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 1f843f23defc05513122de20933a3715656f72e1..0802b8558ffd3c3b7c659f7731cb43a4b7ccec1a 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
@@ -5,6 +5,7 @@
<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-item/paper-item.html">
+<link rel="import" href="/list_item_behavior.html">
<link rel="import" href="/settings_shared_css.html">
<dom-module id="bluetooth-device-list-item">
@@ -32,7 +33,8 @@
<span hidden$="[[!device.connecting]]">$i18n{bluetoothConnecting}</span>
<div hidden$="[[!device.paired]]">
<paper-icon-button icon="cr:more-vert" toggles
- active="{{dropdownOpened}}" tabindex$="[[tabindex]]">
+ active="{{dropdownOpened}}" tabindex$="[[tabindex]]"
+ on-tap="ensureMaxZIndex">
</paper-icon-button>
<iron-dropdown opened="{{dropdownOpened}}" on-tap="menuSelected_"
vertical-align="auto" horizontal-align="right">

Powered by Google App Engine
This is Rietveld 408576698