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

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

Issue 7926010: Fix X button size of subpage for touch ui (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 3 months 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html id="t" i18n-values="dir:textdirection"> 2 <html id="t" i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <include src="../content_security_policy.html"/> 5 <include src="../content_security_policy.html"/>
6 <!-- Set the title to that of the default page so that the title doesn't flash 6 <!-- Set the title to that of the default page so that the title doesn't flash
7 on load (for the most common case). --> 7 on load (for the most common case). -->
8 <title i18n-content="browserPageTabTitle"></title> 8 <title i18n-content="browserPageTabTitle"></title>
9 9
10 <link rel="icon" href="../../../app/theme/settings_favicon.png"> 10 <link rel="icon" href="../../../app/theme/settings_favicon.png">
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 <link rel="stylesheet" href="about_page.css"> 47 <link rel="stylesheet" href="about_page.css">
48 <link rel="stylesheet" href="chromeos/accounts_options_page.css"> 48 <link rel="stylesheet" href="chromeos/accounts_options_page.css">
49 <link rel="stylesheet" href="chromeos/change_picture_options.css"> 49 <link rel="stylesheet" href="chromeos/change_picture_options.css">
50 <link rel="stylesheet" href="chromeos/internet_options_page.css"> 50 <link rel="stylesheet" href="chromeos/internet_options_page.css">
51 <link rel="stylesheet" href="chromeos/proxy.css"> 51 <link rel="stylesheet" href="chromeos/proxy.css">
52 <link rel="stylesheet" href="chromeos/system_options_page.css"> 52 <link rel="stylesheet" href="chromeos/system_options_page.css">
53 </if> 53 </if>
54 <if expr="pp_ifdef('chromeos') and pp_ifdef('touchui')"> 54 <if expr="pp_ifdef('chromeos') and pp_ifdef('touchui')">
55 <link rel="stylesheet" href="chromeos/virtual_keyboard.css"> 55 <link rel="stylesheet" href="chromeos/virtual_keyboard.css">
56 </if> 56 </if>
57 <if expr="pp_ifdef('touchui')">
58 <link rel="stylesheet" href="options_page_touchui.css">
59 </if>
57 60
58 <if expr="not pp_ifdef('win32') and not pp_ifdef('darwin')"> 61 <if expr="not pp_ifdef('win32') and not pp_ifdef('darwin')">
59 <link rel="stylesheet" href="certificate_manager.css"> 62 <link rel="stylesheet" href="certificate_manager.css">
60 </if> 63 </if>
61 64
62 <script src="chrome://resources/css/tree.css.js"></script> 65 <script src="chrome://resources/css/tree.css.js"></script>
63 66
64 <script src="chrome://resources/js/cr.js"></script> 67 <script src="chrome://resources/js/cr.js"></script>
65 <script src="chrome://resources/js/cr/command_line.js"></script> 68 <script src="chrome://resources/js/cr/command_line.js"></script>
66 <script src="chrome://resources/js/cr/event_target.js"></script> 69 <script src="chrome://resources/js/cr/event_target.js"></script>
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 </div> 182 </div>
180 </div> 183 </div>
181 </div> 184 </div>
182 </div> 185 </div>
183 </div> 186 </div>
184 <script src="chrome://settings/strings.js"></script> 187 <script src="chrome://settings/strings.js"></script>
185 <script src="chrome://resources/js/i18n_template.js"></script> 188 <script src="chrome://resources/js/i18n_template.js"></script>
186 <script src="chrome://resources/js/i18n_process.js"></script> 189 <script src="chrome://resources/js/i18n_process.js"></script>
187 </body> 190 </body>
188 </html> 191 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698