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

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

Issue 6342020: dom-ui settings: Layout tweaks to bring Under the Hood closer to mocks.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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
« no previous file with comments | « chrome/browser/resources/options/advanced_options.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div class="page hidden" id="advancedPage"> 1 <div id="advancedPage" class="page hidden">
2 <h1 i18n-content="advancedPage"></h1> 2 <h1 i18n-content="advancedPage"></h1>
3 <section> 3 <section>
4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
5 <div> 5 <div>
6 <div> 6 <div class="section-group">
7 <button id="privacyContentSettingsButton" 7 <button id="privacyContentSettingsButton"
8 i18n-content="privacyContentSettingsButton"></button> 8 i18n-content="privacyContentSettingsButton"></button>
9 <button id="privacyClearDataButton" 9 <button id="privacyClearDataButton"
10 i18n-content="privacyClearDataButton"></button> 10 i18n-content="privacyClearDataButton"></button>
11 </div> 11 </div>
12 <div i18n-content="improveBrowsingExperience" class="informational-text"> 12 <div i18n-content="improveBrowsingExperience" class="informational-text">
13 </div> 13 </div>
14 <div> 14 <div>
15 <span i18n-content="disableWebServices" class="informational-text"> 15 <span i18n-content="disableWebServices" class="informational-text">
16 </span> 16 </span>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 <label class="checkbox" id="metricsReportingSetting"> 49 <label class="checkbox" id="metricsReportingSetting">
50 <input id="metricsReportingEnabled" type="checkbox"> 50 <input id="metricsReportingEnabled" type="checkbox">
51 <span i18n-content="enableLogging"></span> 51 <span i18n-content="enableLogging"></span>
52 </label> 52 </label>
53 </if> 53 </if>
54 </div> 54 </div>
55 </section> 55 </section>
56 <section> 56 <section>
57 <h3 i18n-content="advancedSectionTitleContent"></h3> 57 <h3 i18n-content="advancedSectionTitleContent"></h3>
58 <div> 58 <div>
59 <if expr="os == 'darwin'"> 59 <div class="section-group">
60 <label class="checkbox"> 60 <label class="web-content-select-label">
61 <input id="tabsToLinksPref" pref="webkit.webprefs.tabs_to_links"
62 metric="Options_TabsToLinks" type="checkbox">
63 <span i18n-content="tabsToLinksPref"></span>
64 </label>
65 </if>
66 <div>
67 <label>
68 <span i18n-content="defaultFontSizeLabel"></span> 61 <span i18n-content="defaultFontSizeLabel"></span>
69 <select id="defaultFontSize"> 62 <select id="defaultFontSize">
70 <option value="9" i18n-content="fontSizeLabelVerySmall"></option> 63 <option value="9" i18n-content="fontSizeLabelVerySmall"></option>
71 <option value="12" i18n-content="fontSizeLabelSmall"></option> 64 <option value="12" i18n-content="fontSizeLabelSmall"></option>
72 <option value="16" i18n-content="fontSizeLabelMedium"></option> 65 <option value="16" i18n-content="fontSizeLabelMedium"></option>
73 <option value="20" i18n-content="fontSizeLabelLarge"></option> 66 <option value="20" i18n-content="fontSizeLabelLarge"></option>
74 <option value="24" i18n-content="fontSizeLabelVeryLarge"></option> 67 <option value="24" i18n-content="fontSizeLabelVeryLarge"></option>
75 </select> 68 </select>
76 </label> 69 </label>
77 <button id="fontSettingsCustomizeFontsButton" 70 <button id="fontSettingsCustomizeFontsButton"
78 i18n-content="fontSettingsCustomizeFontsButton"></button> 71 i18n-content="fontSettingsCustomizeFontsButton"></button>
79 </div> 72 </div>
80 <div> 73 <div class="section-group">
81 <label> 74 <label class="web-content-select-label">
82 <span i18n-content="defaultZoomLevelLabel"></span> 75 <span i18n-content="defaultZoomLevelLabel"></span>
83 <select id="defaultZoomLevel" pref="profile.default_zoom_level" 76 <select id="defaultZoomLevel" pref="profile.default_zoom_level"
84 dataType="real" metric="Options_ChangeDefaultZoomLevel"> 77 dataType="real" metric="Options_ChangeDefaultZoomLevel">
85 <option value="-3">57%</option> 78 <option value="-3">57%</option>
86 <option value="-2">69%</option> 79 <option value="-2">69%</option>
87 <option value="-1">83%</option> 80 <option value="-1">83%</option>
88 <option value="0">100%</option> 81 <option value="0">100%</option>
89 <option value="1">120%</option> 82 <option value="1">120%</option>
90 <option value="2">144%</option> 83 <option value="2">144%</option>
91 <option value="3">172%</option> 84 <option value="3">172%</option>
92 <option value="4">207%</option> 85 <option value="4">207%</option>
93 <option value="5">248%</option> 86 <option value="5">248%</option>
94 <option value="6">298%</option> 87 <option value="6">298%</option>
95 </select> 88 </select>
96 </label> 89 </label>
97 </div> 90 </div>
91 <if expr="not pp_ifdef('chromeos') or os == 'win32'">
92 <div class="section-group">
93 </if>
98 <if expr="not pp_ifdef('chromeos')"> 94 <if expr="not pp_ifdef('chromeos')">
99 <div>
100 <button id="language-button" 95 <button id="language-button"
101 i18n-content="languageAndSpellCheckSettingsButton"></button> 96 i18n-content="languageAndSpellCheckSettingsButton"></button>
97 </if>
98 <if expr="os == 'win32'">
99 <button id="gearSettingsConfigureGearsButton"
100 i18n-content="gearSettingsConfigureGearsButton"></button>
101 </if>
102 <if expr="not pp_ifdef('chromeos') or os == 'win32'">
102 </div> 103 </div>
103 </if> 104 </if>
104 <if expr="os == 'win32'"> 105 <if expr="os == 'darwin'">
105 <div> 106 <label class="checkbox">
106 <label style="display:inline;"> 107 <input id="tabsToLinksPref" pref="webkit.webprefs.tabs_to_links"
107 <span i18n-content="gearSettingsGroupName"></span> 108 metric="Options_TabsToLinks" type="checkbox">
108 <button id="gearSettingsConfigureGearsButton" 109 <span i18n-content="tabsToLinksPref"></span>
109 i18n-content="gearSettingsConfigureGearsButton"></button> 110 </label>
110 </label>
111 </div>
112 </if> 111 </if>
113 </div> 112 </div>
114 </section> 113 </section>
115 <section> 114 <section>
116 <h3 i18n-content="advancedSectionTitleNetwork"></h3> 115 <h3 i18n-content="advancedSectionTitleNetwork"></h3>
117 <div> 116 <div>
118 <div id="proxiesLabel"></div> 117 <div id="proxiesLabel"></div>
119 <button id="proxiesConfigureButton" 118 <div class="section-group">
120 i18n-content="proxiesConfigureButton"></button> 119 <button id="proxiesConfigureButton"
120 i18n-content="proxiesConfigureButton"></button>
121 </div>
121 </div> 122 </div>
122 </section> 123 </section>
123 <section> 124 <section>
124 <h3 i18n-content="advancedSectionTitleTranslate"></h3> 125 <h3 i18n-content="advancedSectionTitleTranslate"></h3>
125 <div> 126 <div>
126 <label class="checkbox"> 127 <label class="checkbox">
127 <input id="enableTranslate" pref="translate.enabled" 128 <input id="enableTranslate" pref="translate.enabled"
128 metric="Options_Translate" type="checkbox"> 129 metric="Options_Translate" type="checkbox">
129 <span i18n-content="translateEnableTranslate"></span> 130 <span i18n-content="translateEnableTranslate"></span>
130 </label> 131 </label>
131 </div> 132 </div>
132 </section> 133 </section>
133 <if expr="not pp_ifdef('chromeos')"> 134 <if expr="not pp_ifdef('chromeos')">
134 <section> 135 <section>
135 <h3 i18n-content="downloadLocationGroupName"></h3> 136 <h3 i18n-content="downloadLocationGroupName"></h3>
136 <div> 137 <div>
137 <div> 138 <div id="download-location-group">
138 <label> 139 <label>
139 <span i18n-content="downloadLocationBrowseTitle"></span> 140 <span i18n-content="downloadLocationBrowseTitle"></span>
140 <input id="downloadLocationPath" type="text" size="60" disabled> 141 <input id="downloadLocationPath" type="text" size="60" disabled>
141 </label> 142 </label>
142 <button id="downloadLocationChangeButton" 143 <button id="downloadLocationChangeButton"
143 i18n-content="downloadLocationChangeButton"></button> 144 i18n-content="downloadLocationChangeButton"></button>
144 </div> 145 </div>
145 <label class="checkbox"> 146 <label class="checkbox">
146 <input id="promptForDownload" pref="download.prompt_for_download" 147 <input id="promptForDownload" pref="download.prompt_for_download"
147 metric="Options_AskForSaveLocation" type="checkbox"> 148 metric="Options_AskForSaveLocation" type="checkbox">
148 <span i18n-content="downloadLocationAskForSaveLocation"></span> 149 <span i18n-content="downloadLocationAskForSaveLocation"></span>
149 </label> 150 </label>
150 <div i18n-content="autoOpenFileTypesInfo"></div> 151 <div i18n-content="autoOpenFileTypesInfo"></div>
151 <div><button id="autoOpenFileTypesResetToDefault" 152 <div class="section-group">
152 i18n-content="autoOpenFileTypesResetToDefault"></button></div> 153 <button id="autoOpenFileTypesResetToDefault"
154 i18n-content="autoOpenFileTypesResetToDefault"></button>
155 </div>
153 </div> 156 </div>
154 </section> 157 </section>
155 </if> 158 </if>
156 <section> 159 <section>
157 <h3 i18n-content="advancedSectionTitleSecurity"></h3> 160 <h3 i18n-content="advancedSectionTitleSecurity"></h3>
158 <div> 161 <div>
159 <div><button id="certificatesManageButton" 162 <div><button id="certificatesManageButton"
160 i18n-content="certificatesManageButton"></button></div> 163 i18n-content="certificatesManageButton"></button></div>
161 <if expr="os == 'win32'"> 164 <if expr="os == 'win32'">
162 <!-- Configure these options for manual handling on windows --> 165 <!-- Configure these options for manual handling on windows -->
(...skipping 29 matching lines...) Expand all
192 </label> 195 </label>
193 </if> 196 </if>
194 </div> 197 </div>
195 </section> 198 </section>
196 <if expr="not pp_ifdef('chromeos')"> 199 <if expr="not pp_ifdef('chromeos')">
197 <section id="cloud-print-proxy-section"> 200 <section id="cloud-print-proxy-section">
198 <h3 i18n-content="advancedSectionTitleCloudPrint"></h3> 201 <h3 i18n-content="advancedSectionTitleCloudPrint"></h3>
199 <div> 202 <div>
200 <div id="cloudPrintProxyLabel" 203 <div id="cloudPrintProxyLabel"
201 i18n-content="cloudPrintProxyDisabledLabel"></div> 204 i18n-content="cloudPrintProxyDisabledLabel"></div>
202 <div> 205 <div class="section-group">
203 <button id="cloudPrintProxySetupButton" 206 <button id="cloudPrintProxySetupButton"
204 i18n-content="cloudPrintProxyDisabledButton"></button> 207 i18n-content="cloudPrintProxyDisabledButton"></button>
205 <button id="cloudPrintProxyManageButton" 208 <button id="cloudPrintProxyManageButton"
206 i18n-content="cloudPrintProxyEnabledManageButton"></button> 209 i18n-content="cloudPrintProxyEnabledManageButton"></button>
207 </div> 210 </div>
208 </div> 211 </div>
209 </section> 212 </section>
210 </if> 213 </if>
211 <if expr="pp_ifdef('remoting') and not pp_ifdef('chromeos')"> 214 <if expr="pp_ifdef('remoting') and not pp_ifdef('chromeos')">
212 <section id="remoting-section"> 215 <section id="remoting-section">
213 <h3 i18n-content="advancedSectionTitleRemoting"></h3> 216 <h3 i18n-content="advancedSectionTitleRemoting"></h3>
214 <div> 217 <div>
215 <div id="remotingStatus" class="section-text"></div> 218 <div id="remotingStatus" class="section-text"></div>
216 <div> 219 <div class="section-group">
217 <button id="remotingSetupButton" 220 <button id="remotingSetupButton"
218 i18n-content="remotingSetupButton" 221 i18n-content="remotingSetupButton"
219 style="display:none;"></button> 222 style="display:none;"></button>
220 <button id="remotingStopButton" 223 <button id="remotingStopButton"
221 i18n-content="remotingStopButton" 224 i18n-content="remotingStopButton"
222 style="display:none;"></button> 225 style="display:none;"></button>
223 </div> 226 </div>
224 </div> 227 </div>
225 </section> 228 </section>
226 </if> 229 </if>
227 </div> 230 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/advanced_options.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698