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

Unified Diff: chrome/browser/resources/settings/on_startup_page/startup_urls_page.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/on_startup_page/startup_urls_page.html
diff --git a/chrome/browser/resources/settings/on_startup_page/startup_urls_page.html b/chrome/browser/resources/settings/on_startup_page/startup_urls_page.html
index a00e970f7c0c3b14af693b93778589fd025ca649..a013850ec5471d21e4d9636a3d84e1c119736f17 100644
--- a/chrome/browser/resources/settings/on_startup_page/startup_urls_page.html
+++ b/chrome/browser/resources/settings/on_startup_page/startup_urls_page.html
@@ -14,9 +14,14 @@
@apply(--settings-list-frame-padding);
max-height: 395px; /** Enough height to show six entries. */
}
+
#container iron-list > settings-startup-url-entry:not(:first-of-type) {
border-top: var(--settings-separator-line);
}
+
+ #container {
+ overflow: inherit;
+ }
stevenjb 2016/10/13 16:49:52 Is there a reason not to apply this to all .scroll
</style>
<div id="outer" class="layout vertical flex">
<div id="container" class="scroll-container flex" scrollable>

Powered by Google App Engine
This is Rietveld 408576698