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

Unified Diff: content/browser/resources/net/network_errors_listing.css

Issue 1421743002: Implement chrome://network-errors for direct access to network error interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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: content/browser/resources/net/network_errors_listing.css
diff --git a/content/browser/resources/net/network_errors_listing.css b/content/browser/resources/net/network_errors_listing.css
new file mode 100644
index 0000000000000000000000000000000000000000..783754bd9437f3cf807fc9a14697ac53be5a0ae8
--- /dev/null
+++ b/content/browser/resources/net/network_errors_listing.css
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2015 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
Dan Beam 2015/11/24 20:08:20 /* Copyright 2015 The Chromium Authors. All rights
edwardjung 2015/11/24 21:42:12 Done.
+
+body {
+ font-family: Arial, sans-serif;
Dan Beam 2015/11/24 20:08:20 should this be the same font as other webui pages
edwardjung 2015/11/24 21:42:12 Good point. Switched to use Roboto.
+ font-size: 12px;
+ margin: 10px;
+ padding-bottom: 65px;
+}
+
+ul {
+ line-height: 1.7em;
+ padding-left: 15px;
+}
+
+a {
+ word-break: break-word;
+}

Powered by Google App Engine
This is Rietveld 408576698