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

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: 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><!-- TODO(dbeam): RTL? --> 2 <html><!-- TODO(dbeam): RTL? -->
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: 0; 10 margin: 0;
11 } 11 }
12 .background { 12 .background {
13 height: 100%; 13 height: 100%;
14 position: absolute; 14 position: absolute;
15 width: 100%; 15 width: 100%;
16 } 16 }
17 .cell { 17 .cell {
18 padding: 40px; 18 padding: 40px;
19 } 19 }
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 <input type="button" i18n-values="value:ok" name="ok" 96 <input type="button" i18n-values="value:ok" name="ok"
97 class="proceedbutton" onclick="sendCommand(getChecked());"> 97 class="proceedbutton" onclick="sendCommand(getChecked());">
98 <input type="button" i18n-values="value:cancel" name="cancel" 98 <input type="button" i18n-values="value:cancel" name="cancel"
99 onclick="sendCommand(0);"> 99 onclick="sendCommand(0);">
100 </form> 100 </form>
101 </div> 101 </div>
102 </td> 102 </td>
103 </table> 103 </table>
104 </body> 104 </body>
105 </html> 105 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698