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

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

Issue 2115833003: Site Settings Desktop: Implement the cookies list and details dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback 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
OLDNEW
(Empty)
1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
4 <link rel="import" href="/settings_shared_css.html">
5 <link rel="import" href="/site_settings/site_data_details_dialog.html">
6 <link rel="import" href="/site_settings/site_settings_behavior.html">
7
8 <dom-module id="site-data">
9 <template>
10 <style include="settings-shared">
11 :host {
12 display: block;
13 margin-top: 18px;
14 width: 100%;
15 }
16
17 .list-frame {
18 -webkit-padding-start: 36px;
19 margin-top: 10px;
20 }
21
22 .site {
23 margin-top: 3px;
24 }
25 </style>
26 <div>$i18n{siteSettingsCookieHeader}</div>
27 <div class="list-frame vertical-list">
28 <template is="dom-repeat" items="[[sites]]">
29 <div class="list-item underscore">
30 <div class="favicon-image" style$="[[computeSiteIcon(item.site)]]"
31 on-tap="onOriginTap_"></div>
32 <div class="middle layout horizontal" on-tap="onSiteTap_">
33 <div class="site flex">[[item.site]]</div>
34 <div class="secondary">[[item.localData]]</div>
35 </div>
36 </div>
37 </template>
38 </div>
39
40 </template>
41 <script src="cookie_info.js"></script>
42 <script src="cookie_tree_node.js"></script>
43 <script src="site_data.js"></script>
44 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698