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

Side by Side Diff: chrome/browser/resources/settings/site_settings/category_setting_exceptions.html

Issue 2554403005: [MD settings] move extra options in category settings (Closed)
Patch Set: merge with master; review changes Created 4 years 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
(Empty)
1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="/settings_shared_css.html">
3 <link rel="import" href="/site_settings/constants.html">
4 <link rel="import" href="/site_settings/site_list.html">
5
6 <dom-module id="category-setting-exceptions">
7 <template>
8 <style include="settings-shared">
9 site-list {
10 border-bottom: 1px solid var(--paper-grey-300);
11 }
12
13 site-list:last-of-type {
14 border-bottom: none;
15 }
16 </style>
17 <site-list
18 category="[[category]]"
19 category-subtype="[[PermissionValues.BLOCK]]"
20 category-enabled="[[categoryEnabled]]"
21 category-header="$i18n{siteSettingsBlock}">
22 </site-list>
23 <site-list
24 category="[[category]]"
25 category-subtype="[[PermissionValues.SESSION_ONLY]]"
26 category-enabled="[[categoryEnabled]]"
27 category-header="$i18n{siteSettingsSessionOnly}">
28 </site-list>
29 <site-list
30 category="[[category]]"
31 category-subtype="[[PermissionValues.ALLOW]]"
32 category-enabled="[[categoryEnabled]]"
33 category-header="$i18n{siteSettingsAllow}">
34 </site-list>
35 </template>
36 <script src="category_setting_exceptions.js"></script>
37 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698