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

Side by Side Diff: chrome/browser/resources/chromeos/diagnostics/main.css

Issue 10827148: diagnostics: Add connectivity section to chrome://diagnostics (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More tweaking to conform to other chrome/about page style. Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 * found in the LICENSE file.
4 */
5
6 body {
7 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif;
8 font-size: 75%;
9 padding: 1em;
10 }
11
12 body header > h1 {
13 margin: 0;
14 padding: 21px 0 13px;
15 }
16
17 /* Create a border under the h1 (but before anything that gets appended
18 * to the end of the header, such as the managed prefs banner). */
19 body header > h1::after {
20 -webkit-margin-end: 20px;
21 background-color: #eee;
22 content: ' ';
James Hawkins 2012/08/06 16:05:39 s/' '/''/
hshi1 2012/08/06 17:30:55 Done.
23 display: block;
24 height: 1px;
25 position: relative;
26 top: 13px;
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698