OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
6 <link rel="import" href="../route.html"> | 6 <link rel="import" href="../route.html"> |
7 <link rel="import" href="../settings_shared_css.html"> | 7 <link rel="import" href="../settings_shared_css.html"> |
8 <link rel="import" href="site_settings_prefs_browser_proxy.html"> | 8 <link rel="import" href="site_settings_prefs_browser_proxy.html"> |
9 | 9 |
10 <dom-module id="site-data-details-subpage"> | 10 <dom-module id="site-data-details-subpage"> |
11 <template> | 11 <template> |
12 <style include="settings-shared md-select"> | 12 <style include="settings-shared md-select"> |
13 [first] { | 13 [first] { |
14 border-top: none; | 14 border-top: none; |
15 } | 15 } |
16 | 16 |
17 .secondary, | 17 .secondary, |
18 .start { | 18 .start { |
19 -webkit-user-select: text; | 19 -webkit-user-select: text; |
20 max-width: 100%; | 20 max-width: 100%; |
21 word-wrap: break-word; | 21 word-wrap: break-word; |
22 } | 22 } |
23 </style> | 23 </style> |
24 <template is="dom-repeat" items="[[entries_]]"> | 24 <template is="dom-repeat" items="[[entries_]]"> |
25 <div class="settings-box" first$="[[!index]]"> | 25 <div class="settings-box" first$="[[!index]]"> |
26 <div class="start">[[getEntryDescription_(item)]]</div> | 26 <div class="start">[[getEntryDescription_(item)]]</div> |
27 <cr-expand-button expanded="{{item.expanded_}}"> | 27 <cr-expand-button expanded="{{item.expanded_}}"> |
28 </cr-expand-button> | 28 </cr-expand-button> |
29 <paper-icon-button data-id-path$="[[item.idPath]]" icon="cr:close" | 29 <button is="paper-icon-button-light" data-id-path$="[[item.idPath]]" |
30 on-tap="onRemove_"> | 30 class="icon-clear" on-tap="onRemove_"> |
31 </paper-icon-button> | 31 </button> |
32 </div> | 32 </div> |
33 <iron-collapse class="list-frame vertical-list" | 33 <iron-collapse class="list-frame vertical-list" |
34 opened="[[item.expanded_]]"> | 34 opened="[[item.expanded_]]"> |
35 <template is="dom-repeat" items="[[getCookieNodes_(item)]]"> | 35 <template is="dom-repeat" items="[[getCookieNodes_(item)]]"> |
36 <div class="list-item two-line"> | 36 <div class="list-item two-line"> |
37 <div class="start"> | 37 <div class="start"> |
38 [[item.label]] | 38 [[item.label]] |
39 <div class="secondary">[[item.content]]</div> | 39 <div class="secondary">[[item.content]]</div> |
40 </div> | 40 </div> |
41 </div> | 41 </div> |
42 </template> | 42 </template> |
43 </iron-collapse> | 43 </iron-collapse> |
44 </template> | 44 </template> |
45 </template> | 45 </template> |
46 <script src="cookie_info.js"></script> | 46 <script src="cookie_info.js"></script> |
47 <script src="cookie_tree_node.js"></script> | 47 <script src="cookie_tree_node.js"></script> |
48 <script src="site_data_details_subpage.js"></script> | 48 <script src="site_data_details_subpage.js"></script> |
49 </dom-module> | 49 </dom-module> |
OLD | NEW |