summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/chromeos/system_options.html
blob: 88d1059ba484450c849e60f7dc59a6339ac0deb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<div id="systemPage" class="page" hidden>
  <h1 i18n-content="systemPage"></h1>
  <div class="displaytable">
    <section>
      <h3 i18n-content="datetime_title"></h3>
      <div class="option-control-table">
        <span class="option-name" i18n-content="timezone"></span>
        <div id="timezone-value">
          <select id="timezone-select" class="control"
              i18n-options="timezoneList"
              dataType="string"
              pref="cros.system.timezone"></select>
        </div>
        <div class="checkbox">
          <label>
            <input id="use-24hour-clock"
                pref="settings.clock.use_24hour_clock"
                type="checkbox">
            <span i18n-content="use_24hour_clock"></span>
          </label>
        </div>
      </div>
    </section>
    <section>
      <h3 i18n-content="touchpad"></h3>
      <div class="option-control-table">
        <span class="option-name" i18n-content="sensitivity"></span>
	<div id="touchpad-value">
          <div id="slider-control">
            <input id="sensitivity-range" type="range" min="1" max="5"
                pref="settings.touchpad.sensitivity2" class="touch-slider">
            <div>
              <span i18n-content="sensitivity_less"></span>
              <span i18n-content="sensitivity_more"
                  class="touchpad-sensitivity-more"></span>
            </div>
          </div>
        </div>
        <div class="checkbox">
          <label>
            <input id="tap-to-click-check"
                pref="settings.touchpad.enable_tap_to_click"
                type="checkbox">
            <span i18n-content="enable_tap_to_click"></span>
          </label>
        </div>
      </div>  
    </section>
    <section>
      <h3 i18n-content="language"></h3>
      <div class="option-control-table">
        <div class="option-name">
          <button id="language-button" i18n-content="language_customize">
          </button>
        </div>
        <div class="option-name">
          <button id="modifier-keys-button"
              i18n-content="modifier_keys_customize"></button>
         </div>
      </div>
    </section>
    <section>
      <h3 i18n-content="accessibility_title"></h3>
      <div class="option-control-table">
        <div class="option-name">
          <div class="checkbox">
            <label>
              <input id="accesibility-check" type="checkbox">
              <span i18n-content="accessibility"></span>
            </label>
          </div>
        </div>
      </div>
    </section>
  </div>
</div>