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

Side by Side Diff: chrome/browser/resources/uber/uber_shared.css

Issue 10113001: Move section CSS to uber_shared to share with other uber pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/options2/options_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 (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 body.uber-frame { 5 body.uber-frame {
6 -webkit-margin-start: 155px; 6 -webkit-margin-start: 155px;
7 color: rgb(48, 57, 66); 7 color: rgb(48, 57, 66);
8 } 8 }
9 9
10 html[dir='rtl'] body.uber-frame { 10 html[dir='rtl'] body.uber-frame {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 } 88 }
89 89
90 body.uber-frame footer { 90 body.uber-frame footer {
91 border-top: 1px solid #eee; 91 border-top: 1px solid #eee;
92 margin-top: 16px; 92 margin-top: 16px;
93 /* min-width and max-width should match the header */ 93 /* min-width and max-width should match the header */
94 max-width: 638px; 94 max-width: 638px;
95 min-width: 600px; 95 min-width: 600px;
96 padding: 8px 0; 96 padding: 8px 0;
97 } 97 }
98
99 /* Sections are used in options pages, help page and history page. This defines
100 * the section metrics to match the header metrics above. */
101 body.uber-frame section {
102 -webkit-padding-start: 18px;
103 margin-bottom: 24px;
104 margin-top: 8px;
105 max-width: 600px;
106 }
107
108 body.uber-frame section:last-of-type {
109 margin-bottom: 0;
110 }
111
112 body.uber-frame section > h3 {
113 -webkit-margin-start: -18px;
114 }
115
116 body.uber-frame section > div:only-of-type {
117 -webkit-box-flex: 1;
118 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/options_page.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698