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

Unified 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: Use formatted templates in grd file to handle the long paragraphs of UI strings. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/diagnostics/main.css
diff --git a/chrome/browser/resources/chromeos/diagnostics/main.css b/chrome/browser/resources/chromeos/diagnostics/main.css
index 45b37015b177d90199db83260d93b1060c86e007..09b0ebe9a2309941636bdb1300cffe9357db9a5f 100644
--- a/chrome/browser/resources/chromeos/diagnostics/main.css
+++ b/chrome/browser/resources/chromeos/diagnostics/main.css
@@ -4,8 +4,6 @@
*/
body {
- font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif;
- font-size: 75%;
padding: 0;
}
@@ -52,10 +50,41 @@ body {
* to the end of the header, such as the managed prefs banner). */
.page header > h1::after {
-webkit-margin-end: 20px;
- background-color: #eee;
+ background-color: rgb(238, 238, 238);
content: '';
display: block;
height: 1px;
position: relative;
top: 13px;
}
+
+.page div {
+ line-height: 29px;
+}
+
+#connectivity-status div {
+ clear: both;
+ float: left;
+ position: relative;
+}
+
+.test-performed {
+ color: rgb(70, 78, 90);
+}
+
+.test-pending {
+ color: rgb(153, 153, 153);
+}
+
+.test-error {
+ color: rgb(206, 57, 38);
+}
+
+div.recommendation {
+ background: -webkit-gradient(linear, left top, left bottom,
+ from(rgb(171, 253, 182)),
+ to(rgb(94, 191, 107)));
+ border: 1px solid rgb(17, 102, 27);
+ line-height: 16px;
+ padding: 2px;
+}

Powered by Google App Engine
This is Rietveld 408576698