diff options
author | treib <treib@chromium.org> | 2014-12-19 04:48:37 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-19 12:49:59 +0000 |
commit | 2bcb030c80994cb92e4157b99c844f37ed0d21f0 (patch) | |
tree | 3633c38b34073769c60b889e9f2132ffc8373b62 | |
parent | 7e42a8f70f08bb903ba610afd573ebbfdce5a1d6 (diff) | |
download | chromium_src-2bcb030c80994cb92e4157b99c844f37ed0d21f0.zip chromium_src-2bcb030c80994cb92e4157b99c844f37ed0d21f0.tar.gz chromium_src-2bcb030c80994cb92e4157b99c844f37ed0d21f0.tar.bz2 |
Supervised user block interstitial: Fix font
This CL fixes the font regression that was introduced in
https://codereview.chromium.org/786023002 by adding back an
explicit "font-family".
NOTRY=true
BUG=443203
Review URL: https://codereview.chromium.org/805663003
Cr-Commit-Position: refs/heads/master@{#309188}
-rw-r--r-- | chrome/browser/resources/supervised_user_block_interstitial.css | 1 | ||||
-rw-r--r-- | chrome/browser/resources/supervised_user_block_interstitial.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/resources/supervised_user_block_interstitial.css b/chrome/browser/resources/supervised_user_block_interstitial.css index ba71f7d..a620ffa 100644 --- a/chrome/browser/resources/supervised_user_block_interstitial.css +++ b/chrome/browser/resources/supervised_user_block_interstitial.css @@ -3,6 +3,7 @@ * found in the LICENSE file. */ body { background-color: rgb(230, 230, 230); + font-family: Helvetica, Arial, sans-serif; font-size: 10pt; margin: 50px 40px 20px 40px; text-align: center; diff --git a/chrome/browser/resources/supervised_user_block_interstitial.html b/chrome/browser/resources/supervised_user_block_interstitial.html index fe256f2..fc4c6e1 100644 --- a/chrome/browser/resources/supervised_user_block_interstitial.html +++ b/chrome/browser/resources/supervised_user_block_interstitial.html @@ -4,7 +4,7 @@ <meta name="viewport" content="width=device-width"> <meta charset="utf-8"> <title i18n-content="blockPageTitle"></title> -<link rel="stylesheet" href="../../../ui/webui/resources/css/chrome_shared.css"> +<link rel="stylesheet" href="../../../ui/webui/resources/css/widgets.css"> <link rel="stylesheet" href="supervised_user_block_interstitial.css"> <script src="../../../ui/webui/resources/js/cr.js"></script> <script src="../../../ui/webui/resources/js/util.js"></script> |