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

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

Issue 2089313005: Revert of MD Settings: make custom UIs look "actionable" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « chrome/browser/resources/settings/site_settings/site_list.html ('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 <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/polymer/v1_0/paper-item/paper-item.h tml"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
3 <link rel="import" href="/icons.html"> 3 <link rel="import" href="/icons.html">
4 <link rel="import" href="/settings_shared_css.html"> 4 <link rel="import" href="/settings_shared_css.html">
5 <link rel="import" href="/site_settings/constants.html"> 5 <link rel="import" href="/site_settings/constants.html">
6 <link rel="import" href="/site_settings/site_settings_behavior.html"> 6 <link rel="import" href="/site_settings/site_settings_behavior.html">
7 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html"> 7 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html">
8 8
9 <dom-module id="settings-site-settings-page"> 9 <dom-module id="settings-site-settings-page">
10 <template> 10 <template>
11 <style include="settings-shared"> 11 <style include="settings-shared">
12 .settings-box[category] {
13 @apply(--settings-actionable);
14 }
15 </style> 12 </style>
16 <div class="settings-box first" category$="[[ALL_SITES]]" 13 <div class="settings-box first" category$="[[ALL_SITES]]"
17 on-tap="onTapCategory"> 14 on-tap="onTapCategory">
18 <iron-icon icon="settings:list"></iron-icon> 15 <iron-icon icon="settings:list"></iron-icon>
19 <div class="middle">$i18n{siteSettingsCategoryAllSites}</div> 16 <div class="middle">$i18n{siteSettingsCategoryAllSites}</div>
20 </div> 17 </div>
21 <div class="settings-box two-line" 18 <div class="settings-box two-line"
22 category$="[[ContentSettingsTypes.COOKIES]]" on-tap="onTapCategory"> 19 category$="[[ContentSettingsTypes.COOKIES]]" on-tap="onTapCategory">
23 <iron-icon icon="[[computeIconForContentCategory( 20 <iron-icon icon="[[computeIconForContentCategory(
24 ContentSettingsTypes.COOKIES)]]"></iron-icon> 21 ContentSettingsTypes.COOKIES)]]"></iron-icon>
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 ContentSettingsTypes.UNSANDBOXED_PLUGINS)]]" item-icon=""></iron-icon> 141 ContentSettingsTypes.UNSANDBOXED_PLUGINS)]]" item-icon=""></iron-icon>
145 <div class="middle"> 142 <div class="middle">
146 [[computeTitleForContentCategory( 143 [[computeTitleForContentCategory(
147 ContentSettingsTypes.UNSANDBOXED_PLUGINS)]] 144 ContentSettingsTypes.UNSANDBOXED_PLUGINS)]]
148 <div id="unsandboxedPlugins" class="secondary"></div> 145 <div id="unsandboxedPlugins" class="secondary"></div>
149 </div> 146 </div>
150 </div> 147 </div>
151 </template> 148 </template>
152 <script src="site_settings_page.js"></script> 149 <script src="site_settings_page.js"></script>
153 </dom-module> 150 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/site_settings/site_list.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698