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

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: renamed modules 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 selected-site="{{selectedSite}}">
23 </site-list>
24 <site-list
25 category="[[category]]"
26 category-subtype="[[PermissionValues.SESSION_ONLY]]"
27 category-enabled="[[categoryEnabled]]"
28 category-header="$i18n{siteSettingsSessionOnly}"
29 selected-site="{{selectedSite}}">
30 </site-list>
31 <site-list
32 category="[[category]]"
33 category-subtype="[[PermissionValues.ALLOW]]"
34 category-enabled="[[categoryEnabled]]"
35 category-header="$i18n{siteSettingsAllow}"
36 selected-site="{{selectedSite}}">
37 </site-list>
38 </template>
39 <script src="category_setting_exceptions.js"></script>
40 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698