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

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: Fix button style and alignment 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 </style>
22 <div>$i18n{siteSettingsCookieHeader}</div>
23 <div class="list-frame vertical-list">
24 <template is="dom-repeat" items="[[sites]]">
25 <div class="list-item underscore">
26 <div class="favicon-image" style$="[[computeSiteIcon(item.site)]]"
michaelpg 2016/07/05 18:01:11 the screenshot looks like the favicon is not align
Finnur 2016/07/06 09:57:35 Done.
27 on-tap="onOriginTap_"></div>
28 <div class="middle layout horizontal" on-tap="onSiteTap_">
29 <div class="flex">[[item.site]]</div>
30 <div class="secondary">[[item.localData]]</div>
31 </div>
32 </div>
33 </template>
34 </div>
35
36 </template>
37 <script src="cookie_tree_node.js"></script>
38 <script src="site_data.js"></script>
39 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698