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

Unified Diff: components/safe_browsing/web_ui/resources/safe_browsing.css

Issue 2964693003: Added experiments section and exported the list of SafeBrowsing features in WebUI (Closed)
Patch Set: Changed the location of features.cc/.h Created 3 years, 5 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/safe_browsing/web_ui/resources/safe_browsing.css
diff --git a/components/safe_browsing/web_ui/resources/safe_browsing.css b/components/safe_browsing/web_ui/resources/safe_browsing.css
index 0bacdd7f4e8fa58f5984064f24959ce80cd8757c..b26b45ef5757b31c600e40781f8ce446a7ad8584 100644
--- a/components/safe_browsing/web_ui/resources/safe_browsing.css
+++ b/components/safe_browsing/web_ui/resources/safe_browsing.css
@@ -2,7 +2,29 @@
/* 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. */
-
+body {
+ color: rgb(48, 57, 66);
+ margin:15px;
+}
p {
white-space: pre-wrap;
}
+
+.experiments {
+ background-color: #fbfbfb;
vakh (use Gerrit instead) 2017/07/07 00:23:40 interesting choice of color :)
+ border: 1px solid #cecece;
+ border-radius: 3px;
+ padding: 19px;
+ line-height: 1.5;
+}
+
+#sbTitle {
+ font-size: 2em;
+ margin-bottom: 0.8em;
+}
+
+h1, h2, h3, p {
+ font-weight: normal;
+ line-height: 1;
+ user-select: none;
+ }

Powered by Google App Engine
This is Rietveld 408576698