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

Unified Diff: chrome/browser/resources/predictors/predictors.css

Issue 10416002: Seculative resource prefetching for URLs CL. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Moving to WeakPtrs and RVHD. Created 8 years, 7 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/predictors/predictors.css
diff --git a/chrome/browser/resources/predictors/predictors.css b/chrome/browser/resources/predictors/predictors.css
index 5fc7f5a2560b2d8e3a3ade4f3d6a3cee42bdad34..de81702e02c50ba6203f300fc0afbabccc27e047 100644
--- a/chrome/browser/resources/predictors/predictors.css
+++ b/chrome/browser/resources/predictors/predictors.css
@@ -16,15 +16,15 @@ body {
padding: 4px;
}
-#databaseTable {
+table {
background-color: white;
}
-#databaseTable thead tr {
+thead tr {
background-color: rgb(235, 250, 239);
}
-#databaseTable th {
+th {
border-color: gray;
border-style: solid;
border-width: 1px;
@@ -32,14 +32,14 @@ body {
white-space: nowrap;
}
-#databaseTable td {
+td {
border-color: lightgray;
border-style: solid;
border-width: 1px;
padding: 3px;
}
-#databaseTable tbody > td:first-child {
+tbody > td:first-child {
white-space: nowrap;
}
@@ -59,3 +59,5 @@ tr.action-preconnect td {
tr.action-none td {
background-color: rgb(215, 215, 215);
}
+
+
dominich 2012/05/30 15:35:01 nit: you have one extra blank line
Shishir 2012/05/30 18:07:15 Done.

Powered by Google App Engine
This is Rietveld 408576698