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

Unified Diff: chrome/browser/resources/extensions/extensions.css

Issue 22661007: Make the body not scrollable and make a scrollable container div to host #extension-settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix missing end closing tag. Created 7 years, 4 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 | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/extensions/extensions.css
diff --git a/chrome/browser/resources/extensions/extensions.css b/chrome/browser/resources/extensions/extensions.css
index 579fdaa8e41b2e7bdd4bae809a300d1822da2327..276ae2c631149c96808fa9b9bc7904930e8ced74 100644
--- a/chrome/browser/resources/extensions/extensions.css
+++ b/chrome/browser/resources/extensions/extensions.css
@@ -2,6 +2,12 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
+html,
+body {
+ height: 100%;
+ overflow: hidden;
+}
+
html.loading * {
-webkit-transition-duration: 0 !important;
}
@@ -90,6 +96,11 @@ html:not(.focus-outline-visible)
/* Contents */
+#page-container {
+ height: 100%;
+ overflow-y: auto;
+}
+
#extension-settings {
max-width: 738px;
}
« no previous file with comments | « no previous file | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698