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

Side by Side Diff: chrome/browser/resources/settings/settings_main/settings_main.css

Issue 1358313004: Settings Rewrite: Make subpage scrolling work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 :host { 5 #pageContainer {
6 bottom: 0;
7 color: black;
8 display: block;
9 left: 0;
10 position: absolute;
11 right: 0;
12 top: 0;
13 }
14
15 #mainContainer {
16 box-sizing: border-box; 6 box-sizing: border-box;
17 height: 100%; 7 height: 100%;
18 overflow: auto; 8 overflow: auto;
19 padding: 34px 16px; 9 padding: 34px 16px;
20 } 10 }
21 11
12 #pageContainer.expanded {
13 padding: 0 16px;
14 }
15
22 ::content core-icon-button { 16 ::content core-icon-button {
23 position: absolute; 17 position: absolute;
24 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698