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

Side by Side Diff: ui/webui/resources/css/overlay.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: Move to higher level of overlay. 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
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 /* The shield that overlays the background. */ 5 /* The shield that overlays the background. */
6 .overlay { 6 .overlay {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 -webkit-box-pack: center; 9 -webkit-box-pack: center;
10 -webkit-transition: 200ms opacity; 10 -webkit-transition: 200ms opacity;
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 170
171 .gray-bottom-bar { 171 .gray-bottom-bar {
172 background-color: #f5f5f5; 172 background-color: #f5f5f5;
173 border-color: #e7e7e7; 173 border-color: #e7e7e7;
174 border-top-style: solid; 174 border-top-style: solid;
175 border-width: 1px; 175 border-width: 1px;
176 color: #888; 176 color: #888;
177 display: -webkit-box; 177 display: -webkit-box;
178 padding: 14px 17px; 178 padding: 14px 17px;
179 } 179 }
180
181 .no-scroll {
182 overflow-y: hidden;
183 }
OLDNEW
« no previous file with comments | « no previous file | ui/webui/resources/js/cr/ui/overlay.js » ('j') | ui/webui/resources/js/cr/ui/overlay.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698