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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html,
6 body {
7 height: 100%;
8 overflow: hidden;
9 }
10
5 html.loading * { 11 html.loading * {
6 -webkit-transition-duration: 0 !important; 12 -webkit-transition-duration: 0 !important;
7 } 13 }
8 14
9 html:not(.focus-outline-visible) 15 html:not(.focus-outline-visible)
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { 16 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
11 /* Cancel border-color for :focus specified in widgets.css. */ 17 /* Cancel border-color for :focus specified in widgets.css. */
12 border-color: rgba(0, 0, 0, 0.25); 18 border-color: rgba(0, 0, 0, 0.25);
13 } 19 }
14 20
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 89 }
84 90
85 #extension-settings #page-header { 91 #extension-settings #page-header {
86 /* These values match the .page values. */ 92 /* These values match the .page values. */
87 -webkit-margin-end: 24px; 93 -webkit-margin-end: 24px;
88 min-width: 576px; 94 min-width: 576px;
89 } 95 }
90 96
91 /* Contents */ 97 /* Contents */
92 98
99 #page-container {
100 height: 100%;
101 overflow-y: auto;
102 }
103
93 #extension-settings { 104 #extension-settings {
94 max-width: 738px; 105 max-width: 738px;
95 } 106 }
96 107
97 #no-extensions-message { 108 #no-extensions-message {
98 font-weight: bold; 109 font-weight: bold;
99 } 110 }
100 111
101 #suggest-gallery { 112 #suggest-gallery {
102 -webkit-padding-start: 10px; 113 -webkit-padding-start: 10px;
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 /* Sideload Wipeout */ 344 /* Sideload Wipeout */
334 345
335 .sideload-wipeout-learn-more { 346 .sideload-wipeout-learn-more {
336 text-decoration: none; 347 text-decoration: none;
337 } 348 }
338 349
339 .sideload-wipeout-banner .page-banner-text { 350 .sideload-wipeout-banner .page-banner-text {
340 -webkit-padding-start: 8px; 351 -webkit-padding-start: 8px;
341 background-image: none; 352 background-image: none;
342 } 353 }
OLDNEW
« 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