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

Side by Side Diff: chrome/browser/resources/feedback/html/default.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 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
5 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link> 6 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link>
6 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li nk> 7 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li nk>
7 <link rel="stylesheet" href="../css/feedback.css"> 8 <link rel="stylesheet" href="../css/feedback.css">
8 9
9 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/i18n_template_no_process.js"></script> 11 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
11 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
12 <script src="../js/take_screenshot.js"></script> 13 <script src="../js/take_screenshot.js"></script>
13 <script src="../js/topbar_handlers.js"></script> 14 <script src="../js/topbar_handlers.js"></script>
14 <script src="../js/feedback.js"></script> 15 <script src="../js/feedback.js"></script>
15 </head> 16 </head>
16 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 17 <body>
17 <div id="title-bar" class="title-bar"> 18 <div id="title-bar" class="title-bar">
18 <span id="page-title" i18n-content="page-title"></span> 19 <span id="page-title" i18n-content="page-title"></span>
19 <span class="topbutton-bar"> 20 <span class="topbutton-bar">
20 <button class="minimize-button" id="minimize-button" tabindex="-1"> 21 <button class="minimize-button" id="minimize-button" tabindex="-1">
21 </button> 22 </button>
22 <button class="close-button" id="close-button" tabindex="-1"> 23 <button class="close-button" id="close-button" tabindex="-1">
23 </button> 24 </button>
24 </span> 25 </span>
25 </div> 26 </div>
26 <div id="content-pane" class="content"> 27 <div id="content-pane" class="content">
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 <button id="cancel-button" type="submit" 74 <button id="cancel-button" type="submit"
74 class="white-button" i18n-content="cancel"> 75 class="white-button" i18n-content="cancel">
75 </button> 76 </button>
76 <button id="send-report-button" type="submit" 77 <button id="send-report-button" type="submit"
77 class="blue-button" i18n-content="send-report"> 78 class="blue-button" i18n-content="send-report">
78 </button> 79 </button>
79 </div> 80 </div>
80 </div> 81 </div>
81 </body> 82 </body>
82 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698