Chromium Code Reviews| 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.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/site_settings_prefs_browser_proxy.html"> | 8 <link rel="import" href="/site_settings/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 | |
| 17 .secondary, | |
| 18 .start { | |
| 19 -webkit-user-select: text; | |
|
dpapad
2016/11/12 01:15:14
user-select should work I think (no prefix needed)
dschuyler
2016/11/12 01:26:47
It's only cookies.
dpapad
2016/11/12 01:36:57
As of https://bugs.chromium.org/p/chromium/issues/
| |
| 20 max-width: 100%; | |
| 21 word-wrap: break-word; | |
| 22 } | |
| 16 </style> | 23 </style> |
| 17 <template is="dom-repeat" items="[[entries_]]"> | 24 <template is="dom-repeat" items="[[entries_]]"> |
| 18 <div class="settings-box" first$="[[!index]]"> | 25 <div class="settings-box" first$="[[!index]]"> |
| 19 <div class="start">[[getEntryDescription_(item)]]</div> | 26 <div class="start">[[getEntryDescription_(item)]]</div> |
| 20 <cr-expand-button expanded="{{item.expanded_}}"> | 27 <cr-expand-button expanded="{{item.expanded_}}"> |
| 21 </cr-expand-button> | 28 </cr-expand-button> |
| 22 <paper-icon-button data-id-path$="[[item.idPath]]" icon="cr:close" | 29 <paper-icon-button data-id-path$="[[item.idPath]]" icon="cr:close" |
| 23 on-tap="onRemove_"> | 30 on-tap="onRemove_"> |
| 24 </paper-icon-button> | 31 </paper-icon-button> |
| 25 </div> | 32 </div> |
| 26 <iron-collapse class="list-frame vertical-list" | 33 <iron-collapse class="list-frame vertical-list" |
| 27 opened="[[item.expanded_]]"> | 34 opened="[[item.expanded_]]"> |
| 28 <template is="dom-repeat" items="[[getCookieNodes_(item)]]"> | 35 <template is="dom-repeat" items="[[getCookieNodes_(item)]]"> |
| 29 <div class="list-item two-line"> | 36 <div class="list-item two-line"> |
| 30 <div class="start"> | 37 <div class="start"> |
| 31 [[item.label]] | 38 [[item.label]] |
| 32 <div class="secondary">[[item.content]]</div> | 39 <div class="secondary">[[item.content]]</div> |
| 33 </div> | 40 </div> |
| 34 </div> | 41 </div> |
| 35 </template> | 42 </template> |
| 36 </iron-collapse> | 43 </iron-collapse> |
| 37 </template> | 44 </template> |
| 38 </template> | 45 </template> |
| 39 <script src="cookie_info.js"></script> | 46 <script src="cookie_info.js"></script> |
| 40 <script src="cookie_tree_node.js"></script> | 47 <script src="cookie_tree_node.js"></script> |
| 41 <script src="site_data_details_subpage.js"></script> | 48 <script src="site_data_details_subpage.js"></script> |
| 42 </dom-module> | 49 </dom-module> |
| OLD | NEW |