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

Side by Side Diff: chrome/browser/resources/supervised_user_block_interstitial.html

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta name="viewport" content="width=device-width"> 4 <meta name="viewport" content="width=device-width">
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title i18n-content="blockPageTitle"></title> 6 <title i18n-content="blockPageTitle"></title>
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="supervised_user_block_interstitial.css"> 8 <link rel="stylesheet" href="supervised_user_block_interstitial.css">
8 <script src="../../../ui/webui/resources/js/cr.js"></script> 9 <script src="../../../ui/webui/resources/js/cr.js"></script>
9 <script src="../../../ui/webui/resources/js/util.js"></script> 10 <script src="../../../ui/webui/resources/js/util.js"></script>
10 <script src="supervised_user_block_interstitial.js"></script> 11 <script src="supervised_user_block_interstitial.js"></script>
11 </head> 12 </head>
12 13
13 <body> 14 <body>
14 <div id="main-frame-blocked"> 15 <div id="main-frame-blocked">
15 <div id="box"> 16 <div id="box">
16 <div id="content-top"> 17 <div id="content-top">
(...skipping 11 matching lines...) Expand all
28 <div id="button-container"> 29 <div id="button-container">
29 <button id="back-button" i18n-content="backButton"></button> 30 <button id="back-button" i18n-content="backButton"></button>
30 <button id="request-access-button" i18n-content="requestAccessButton"> 31 <button id="request-access-button" i18n-content="requestAccessButton">
31 </button> 32 </button>
32 </div> 33 </div>
33 </div> 34 </div>
34 </div> 35 </div>
35 </div> 36 </div>
36 </body> 37 </body>
37 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698