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

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

Issue 10825291: Diagnostics UI: more UI implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Determine active adapter. 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
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 5
6 body { 6 body {
7 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; 7 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif;
8 font-size: 75%; 8 font-size: 75%;
9 padding: 0; 9 padding: 0;
10 } 10 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 .page header > h1 { 46 .page header > h1 {
47 margin: 0; 47 margin: 0;
48 padding: 21px 0 13px; 48 padding: 21px 0 13px;
49 } 49 }
50 50
51 /* Create a border under the h1 (but before anything that gets appended 51 /* Create a border under the h1 (but before anything that gets appended
52 * to the end of the header, such as the managed prefs banner). */ 52 * to the end of the header, such as the managed prefs banner). */
53 .page header > h1::after { 53 .page header > h1::after {
54 -webkit-margin-end: 20px; 54 -webkit-margin-end: 20px;
55 background-color: #eee; 55 background-color: rgb(238, 238, 238);
56 content: ''; 56 content: '';
57 display: block; 57 display: block;
58 height: 1px; 58 height: 1px;
59 position: relative; 59 position: relative;
60 top: 13px; 60 top: 13px;
61 } 61 }
62
63 .page div {
64 line-height: 29px;
65 }
66
67 .test-performed {
68 color: rgb(70, 78, 90);
69 }
70
71 .test-pending {
72 color: rgb(153, 153, 153);
73 }
74
75 .test-error {
76 color: rgb(206, 57, 38);
77 }
78
79 .recommendation {
80 background: -webkit-gradient(linear, left top, left bottom,
81 from(rgb(171, 253, 182)),
82 to(rgb(94, 191, 107)));
83 border: 1px solid rgb(17, 102, 27);
84 padding: 2px;
85 width: 320px;
86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698