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

Side by Side Diff: chrome/browser/resources/chromeos/offline_app_load.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 charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"> 5 <title i18n-content="title">
6 </title> 6 </title>
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <style> 8 <style>
8 html { 9 html {
9 height: 100%; 10 height: 100%;
10 } 11 }
11 body { 12 body {
12 color: #000; 13 color: #000;
13 font-family: Helvetica, Arial, sans-serif;
14 background-image: -webkit-linear-gradient(rgb(255, 255, 255) 50%, 14 background-image: -webkit-linear-gradient(rgb(255, 255, 255) 50%,
15 rgb(236, 244, 255)); 15 rgb(236, 244, 255));
16 height: 100%; 16 height: 100%;
17 padding: 0px; 17 padding: 0px;
18 margin: 0px; 18 margin: 0px;
19 } 19 }
20 #error { 20 #error {
21 position: absolute; 21 position: absolute;
22 left: 180px; 22 left: 180px;
23 top: 150px; 23 top: 150px;
(...skipping 19 matching lines...) Expand all
43 <div id="name" jsvalues=".innerText:name"></div> 43 <div id="name" jsvalues=".innerText:name"></div>
44 <div id="msg" jsvalues=".innerText:msg"></div> 44 <div id="msg" jsvalues=".innerText:msg"></div>
45 <div id="suggestions" jsselect="suggestionsLearnMore"> 45 <div id="suggestions" jsselect="suggestionsLearnMore">
46 <span jsvalues=".innerHTML:msg"></span> 46 <span jsvalues=".innerHTML:msg"></span>
47 </div> 47 </div>
48 </div> 48 </div>
49 </div> 49 </div>
50 50
51 </body> 51 </body>
52 </html> 52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698