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

Side by Side Diff: chrome/browser/resources/settings/settings_page/settings_section.css

Issue 1509023003: MD Settings: Move width CSS property at the page level. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « chrome/browser/resources/settings/basic_page/basic_page.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * Common styles for Settings pages. 7 * Common styles for Settings pages.
8 */ 8 */
9 :host { 9 :host {
10 display: block; 10 display: block;
(...skipping 13 matching lines...) Expand all
24 24
25 paper-material { 25 paper-material {
26 background-color: white; 26 background-color: white;
27 box-sizing: border-box; 27 box-sizing: border-box;
28 overflow: hidden; 28 overflow: hidden;
29 } 29 }
30 30
31 paper-material, 31 paper-material,
32 #placeholder { 32 #placeholder {
33 margin-bottom: 16px; 33 margin-bottom: 16px;
34 width: 605px;
35 } 34 }
36 35
37 :host(.neon-animating) paper-material { 36 :host(.neon-animating) paper-material {
38 position: fixed; 37 position: fixed;
39 z-index: 1; 38 z-index: 1;
40 } 39 }
41 40
42 :host(.expanded) paper-material { 41 :host(.expanded) paper-material {
43 margin-bottom: 0; 42 margin-bottom: 0;
44 min-height: 100%; 43 min-height: 100%;
45 } 44 }
46 45
47 #placeholder { 46 #placeholder {
48 visibility: hidden; 47 visibility: hidden;
49 } 48 }
50 49
51 :host(:not(.neon-animating)) #placeholder { 50 :host(:not(.neon-animating)) #placeholder {
52 position: absolute; 51 position: absolute;
53 } 52 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/basic_page/basic_page.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698