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

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

Issue 1290583002: Settings: Implement sub-subpages, and clean up some animations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simplify further. fixes display artifact. Created 5 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 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 #section { 9 #section {
10 @apply(--shadow-elevation-4dp); 10 @apply(--shadow-elevation-4dp);
11 background-color: white; 11 background-color: white;
12 height: 100%; 12 height: 100%;
13 overflow: hidden;
13 margin-bottom: 16px; 14 margin-bottom: 16px;
Dan Beam 2015/08/12 21:38:04 alpha sort
tommycli 2015/08/12 22:11:57 Done.
14 width: 605px; 15 width: 605px;
15 } 16 }
16 17
17 #header { 18 #header {
18 @apply(--layout-horizontal); 19 @apply(--layout-horizontal);
19 @apply(--layout-center); 20 @apply(--layout-center);
20 background-color: #f8f8f8; 21 background-color: #f8f8f8;
21 border-bottom: 1px solid rgba(0, 0, 0, .1); 22 border-bottom: 1px solid rgba(0, 0, 0, .1);
22 padding: 16px; 23 padding: 16px;
23 } 24 }
24 25
25 #header iron-icon { 26 #header iron-icon {
26 -webkit-padding-end: 16px; 27 -webkit-padding-end: 16px;
27 color: rgba(0, 0, 0, .87); 28 color: rgba(0, 0, 0, .87);
28 } 29 }
29 30
30 #header .title { 31 #header .title {
31 @apply(--paper-font-body2); 32 @apply(--paper-font-body2);
32 } 33 }
33 34
34 #content-container { 35 #content-container {
35 padding: 16px; 36 padding: 16px;
36 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698