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

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

Issue 7108040: Fix text alignment on settings/system page. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove blank lines at end of file. Created 9 years, 6 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 <div id="systemPage" class="page" hidden> 1 <div id="systemPage" class="page" hidden>
2 <h1 i18n-content="systemPage"></h1> 2 <h1 i18n-content="systemPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section> 4 <section>
5 <h3 i18n-content="datetime_title"></h3> 5 <h3 i18n-content="datetime_title"></h3>
6 <table class="option-control-table"> 6 <div class="option-control-table">
7 <tr> 7 <span class="option-name" i18n-content="timezone"></span>
8 <td class="option-name" i18n-content="timezone"></td> 8 <div id="timezone-value">
9 <td class="option-value">
10 <select id="timezone-select" class="control" 9 <select id="timezone-select" class="control"
11 i18n-options="timezoneList" 10 i18n-options="timezoneList"
12 dataType="string" 11 dataType="string"
13 pref="cros.system.timezone"></select> 12 pref="cros.system.timezone"></select>
14 </td> 13 </div>
15 <tr> 14 <div class="checkbox">
16 <td class="option-name" colspan="2"> 15 <label>
17 <div class="checkbox"> 16 <input id="use-24hour-clock"
18 <label> 17 pref="settings.clock.use_24hour_clock"
19 <input id="use-24hour-clock" 18 type="checkbox">
20 pref="settings.clock.use_24hour_clock" 19 <span i18n-content="use_24hour_clock"></span>
21 type="checkbox"> 20 </label>
22 <span i18n-content="use_24hour_clock"></span> 21 </div>
23 </label> 22 </div>
24 </div>
25 </td>
26 </tr>
27 </tr>
28 </table>
29 </section> 23 </section>
30 <section> 24 <section>
31 <h3 i18n-content="touchpad"></h3> 25 <h3 i18n-content="touchpad"></h3>
32 <table class="option-control-table"> 26 <div class="option-control-table">
33 <tr> 27 <span class="option-name" i18n-content="sensitivity"></span>
34 <td class="option-name" i18n-content="sensitivity"></td> 28 » <div id="touchpad-value">
35 <td class="option-value"> 29 <div id="slider-control">
36 <input id="sensitivity-range" type="range" min="1" max="5" 30 <input id="sensitivity-range" type="range" min="1" max="5"
37 pref="settings.touchpad.sensitivity2" class="touch-slider"> 31 pref="settings.touchpad.sensitivity2" class="touch-slider">
38 </td> 32 <div>
39 </tr> 33 <span i18n-content="sensitivity_less"></span>
40 <tr> 34 <span i18n-content="sensitivity_more"
41 <td></td> 35 class="touchpad-sensitivity-more"></span>
42 <td>
43 <span i18n-content="sensitivity_less"></span>
44 <span i18n-content="sensitivity_more"
45 class="touchpad-sensitivity-more"></span>
46 </td>
47 </tr>
48 <tr>
49 <td class="option-name" colspan="2">
50 <div class="checkbox">
51 <label>
52 <input id="tap-to-click-check"
53 pref="settings.touchpad.enable_tap_to_click"
54 type="checkbox">
55 <span i18n-content="enable_tap_to_click"></span>
56 </label>
57 </div> 36 </div>
58 </td> 37 </div>
59 </tr> 38 </div>
60 </table> 39 <div class="checkbox">
40 <label>
41 <input id="tap-to-click-check"
42 pref="settings.touchpad.enable_tap_to_click"
43 type="checkbox">
44 <span i18n-content="enable_tap_to_click"></span>
45 </label>
46 </div>
47 </div>
61 </section> 48 </section>
62 <section> 49 <section>
63 <h3 i18n-content="language"></h3> 50 <h3 i18n-content="language"></h3>
64 <table class="option-control-table"> 51 <div class="option-control-table">
65 <tr> 52 <div class="option-name">
66 <td class="option-name"> 53 <button id="language-button" i18n-content="language_customize">
67 <button id="language-button" i18n-content="language_customize"> 54 </button>
68 </button> 55 </div>
69 </td> 56 <div class="option-name">
70 <td class="option-name"> 57 <button id="modifier-keys-button"
71 <button id="modifier-keys-button" 58 i18n-content="modifier_keys_customize"></button>
72 i18n-content="modifier_keys_customize"></button> 59 </div>
73 </td> 60 </div>
74 </tr>
75 </table>
76 </section> 61 </section>
77 <section> 62 <section>
78 <h3 i18n-content="accessibility_title"></h3> 63 <h3 i18n-content="accessibility_title"></h3>
79 <table class="option-control-table"> 64 <div class="option-control-table">
80 <tr> 65 <div class="option-name">
81 <td class="option-name"> 66 <div class="checkbox">
82 <div class="checkbox"> 67 <label>
83 <label> 68 <input id="accesibility-check" type="checkbox">
84 <input id="accesibility-check" type="checkbox"> 69 <span i18n-content="accessibility"></span>
85 <span i18n-content="accessibility"></span> 70 </label>
86 </label> 71 </div>
87 </div> 72 </div>
88 </td> 73 </div>
89 </tr>
90 </table>
91 </section> 74 </section>
92 </div> 75 </div>
93 </div> 76 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698