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

Unified Diff: chrome/browser/resources/security_warnings/interstitial_v2.css

Issue 519453002: Switch security warning font to Roboto if client has it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/security_warnings/interstitial_v2.css
diff --git a/chrome/browser/resources/security_warnings/interstitial_v2.css b/chrome/browser/resources/security_warnings/interstitial_v2.css
index ba0c9f11d52db1d4002025ba84b84f24416635a8..b18813f9a88a0788f4ecf373565d7c09254ce57b 100644
--- a/chrome/browser/resources/security_warnings/interstitial_v2.css
+++ b/chrome/browser/resources/security_warnings/interstitial_v2.css
@@ -1,6 +1,14 @@
/* Copyright 2014 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. */
+@font-face {
+ font-family: 'Roboto2';
+ font-weight: 400;
+ src: local('Roboto'),
+ local('Roboto2-Regular'),
+ url(../roboto/roboto.woff2) format('woff2'),
+ url(../roboto/roboto.woff) format('woff');
+}
a {
color: #585858;
@@ -9,6 +17,7 @@ a {
body {
background-color: #f7f7f7;
color: #585858;
+ font-family: 'Roboto2', serif;
Mathieu 2014/08/28 20:04:28 nit: I think the closest fallback to Roboto is 'sa
felt 2014/08/28 20:30:57 I actually removed this altogether; if I don't put
font-size: 125%;
}
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698