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

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

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The First Version. 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> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <style type="text/css"> 7 <style type="text/css">
7 body { 8 body {
8 background-color:#500; 9 background-color:#500;
9 font-family:Helvetica,Arial,sans-serif;
10 margin:0px; 10 margin:0px;
11 } 11 }
12 .background { 12 .background {
13 position:absolute; 13 position:absolute;
14 width:100%; 14 width:100%;
15 height:100%; 15 height:100%;
16 } 16 }
17 .cell { 17 .cell {
18 padding:40px; 18 padding:40px;
19 } 19 }
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 <input type="radio" name="group" value="2"> <span i18n-content="open_w ith_reader"></span><br> 91 <input type="radio" name="group" value="2"> <span i18n-content="open_w ith_reader"></span><br>
92 <br> 92 <br>
93 <input type="button" i18n-values="value:ok" name="ok" class="proceedbu tton" onClick="sendCommand(getChecked());"> 93 <input type="button" i18n-values="value:ok" name="ok" class="proceedbu tton" onClick="sendCommand(getChecked());">
94 <input type="button" i18n-values="value:cancel" name="cancel" onClick= "sendCommand(0);"> 94 <input type="button" i18n-values="value:cancel" name="cancel" onClick= "sendCommand(0);">
95 </form> 95 </form>
96 </div> 96 </div>
97 </td> 97 </td>
98 </table> 98 </table>
99 </body> 99 </body>
100 </html> 100 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698