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

Unified Diff: components/security_interstitials/core/browser/resources/interstitial_common.css

Issue 2854263003: Add quiet safe browsing interstitial for WebView (Closed)
Patch Set: Updates to the HTML / CSS Created 3 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: components/security_interstitials/core/browser/resources/interstitial_common.css
diff --git a/components/security_interstitials/core/browser/resources/interstitial_common.css b/components/security_interstitials/core/browser/resources/interstitial_common.css
new file mode 100644
index 0000000000000000000000000000000000000000..1732e7add767c8fcc0ae82319dcf2d664afd95e9
--- /dev/null
+++ b/components/security_interstitials/core/browser/resources/interstitial_common.css
@@ -0,0 +1,35 @@
+/* Copyright 2017 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 2017/05/08 17:58:04 nit: /* Copyright 2017 The Chromium Authors. All
edwardjung 2017/05/08 23:21:10 Done.
+
+a {
+ color: rgb(88, 88, 88);
+}
+
+body {
+ background-color: rgb(247,247,247);
Dan Beam 2017/05/08 17:58:04 nit: spaces between numbers
edwardjung 2017/05/08 23:21:10 Done.
+ color: rgb(100, 100, 100);
+}
+
+#details-button {
+ background: inherit;
+ border: 0;
+ float: none;
+ margin: 0;
+ padding: 10px 0;
+ text-transform: uppercase;
+}
+
+.hidden {
+ display: none;
+}
+
+html {
+ -webkit-text-size-adjust: 100%;
+ font-size: 125%;
+}
+
+.icon {
+ background-repeat: no-repeat;
+ background-size: 100%;
+}

Powered by Google App Engine
This is Rietveld 408576698