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

Side by Side Diff: chrome/browser/resources/settings/privacy_page/privacy_page.html

Issue 2639373002: MD Settings: clean up text controls (links, buttons) (Closed)
Patch Set: move action_link specific stuff to resources/html/action_link_css.html Created 3 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html"> 2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html"> 8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html">
9 <link rel="import" href="/controls/settings_toggle_button.html"> 9 <link rel="import" href="/controls/settings_toggle_button.html">
10 <link rel="import" href="/lifetime_browser_proxy.html"> 10 <link rel="import" href="/lifetime_browser_proxy.html">
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 </settings-subpage> 342 </settings-subpage>
343 </template> 343 </template>
344 <template is="dom-if" route-path="/content/flash" no-search> 344 <template is="dom-if" route-path="/content/flash" no-search>
345 <settings-subpage page-title="$i18n{siteSettingsFlash}"> 345 <settings-subpage page-title="$i18n{siteSettingsFlash}">
346 <button class="icon-help subpage-title-extra" 346 <button class="icon-help subpage-title-extra"
347 is="paper-icon-button-light" on-tap="onHelpTap_"></button> 347 is="paper-icon-button-light" on-tap="onHelpTap_"></button>
348 <category-default-setting category="{{ContentSettingsTypes.PLUGINS}}" 348 <category-default-setting category="{{ContentSettingsTypes.PLUGINS}}"
349 sub-option-label="$i18n{siteSettingsFlashAskBefore}" 349 sub-option-label="$i18n{siteSettingsFlashAskBefore}"
350 sub-option-secondary="$i18n{siteSettingsFlashAskBeforeSubtitle}"> 350 sub-option-secondary="$i18n{siteSettingsFlashAskBeforeSubtitle}">
351 </category-default-setting> 351 </category-default-setting>
352
353
Dan Beam 2017/01/24 05:25:33 why so spacious?
scottchen 2017/01/24 19:39:12 Done. That batman reference though :)
352 <if expr="chromeos"> 354 <if expr="chromeos">
353 <div actionable class="settings-box" 355 <div actionable class="settings-box"
354 on-tap="onAdobeFlashStorageClicked_"> 356 on-tap="onAdobeFlashStorageClicked_">
355 <div class="list-item list-button">$i18n{adobeFlashStorage}</div> 357 <div class="start">
358 $i18n{adobeFlashStorage}
359 </div>
360 <button class="icon-external" is="paper-icon-button-light"></button>
356 </div> 361 </div>
357 </if> 362 </if>
358 <category-setting-exceptions 363 <category-setting-exceptions
359 category="{{ContentSettingsTypes.PLUGINS}}"> 364 category="{{ContentSettingsTypes.PLUGINS}}">
360 </category-setting-exceptions> 365 </category-setting-exceptions>
361 </settings-subpage> 366 </settings-subpage>
362 </template> 367 </template>
363 <template is="dom-if" route-path="/content/popups" no-search> 368 <template is="dom-if" route-path="/content/popups" no-search>
364 <settings-subpage page-title="$i18n{siteSettingsCategoryPopups}"> 369 <settings-subpage page-title="$i18n{siteSettingsCategoryPopups}">
365 <button class="icon-help subpage-title-extra" 370 <button class="icon-help subpage-title-extra"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 $i18n{siteSettingsCookieRemoveAll} 405 $i18n{siteSettingsCookieRemoveAll}
401 </paper-button> 406 </paper-button>
402 <site-data-details-subpage page-title="{{pageTitle}}"> 407 <site-data-details-subpage page-title="{{pageTitle}}">
403 </site-data-details-subpage> 408 </site-data-details-subpage>
404 </settings-subpage> 409 </settings-subpage>
405 </template> 410 </template>
406 </settings-animated-pages> 411 </settings-animated-pages>
407 </template> 412 </template>
408 <script src="privacy_page.js"></script> 413 <script src="privacy_page.js"></script>
409 </dom-module> 414 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698