| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 6 <link rel="import" href="../i18n_setup.html"> | 6 <link rel="import" href="../i18n_setup.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_behavior.html"> | 8 <link rel="import" href="site_settings_behavior.html"> |
| 9 <link rel="import" href="site_settings_prefs_browser_proxy.html"> | 9 <link rel="import" href="site_settings_prefs_browser_proxy.html"> |
| 10 | 10 |
| 11 <dom-module id="zoom-levels"> | 11 <dom-module id="zoom-levels"> |
| 12 <template> | 12 <template> |
| 13 <style include="settings-shared"> | 13 <style include="settings-shared"> |
| 14 :host { | 14 :host { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 28 <template is="dom-repeat" items="[[sites_]]" id="list"> | 28 <template is="dom-repeat" items="[[sites_]]" id="list"> |
| 29 <div class="list-item"> | 29 <div class="list-item"> |
| 30 <div class="favicon-image" | 30 <div class="favicon-image" |
| 31 style$="[[computeSiteIcon(item.originForFavicon)]]"> | 31 style$="[[computeSiteIcon(item.originForFavicon)]]"> |
| 32 </div> | 32 </div> |
| 33 <div class="middle"> | 33 <div class="middle"> |
| 34 <div>[[item.displayName]]</div> | 34 <div>[[item.displayName]]</div> |
| 35 </div> | 35 </div> |
| 36 <div class="zoom-label">[[item.zoom]]</div> | 36 <div class="zoom-label">[[item.zoom]]</div> |
| 37 <div> | 37 <div> |
| 38 <paper-icon-button icon="cr:clear" on-tap="removeZoomLevel_" | 38 <button is="paper-icon-button-light" class="icon-clear" |
| 39 title="$i18n{siteSettingsRemoveZoomLevel}"></paper-icon-button> | 39 on-tap="removeZoomLevel_" |
| 40 title="$i18n{siteSettingsRemoveZoomLevel}"></button> |
| 40 </div> | 41 </div> |
| 41 </div> | 42 </div> |
| 42 </template> | 43 </template> |
| 43 <template is="dom-if" if="[[!sites_.length]]"> | 44 <template is="dom-if" if="[[!sites_.length]]"> |
| 44 <div id="empty"> | 45 <div id="empty"> |
| 45 $i18n{siteSettingsNoZoomedSites} | 46 $i18n{siteSettingsNoZoomedSites} |
| 46 </div> | 47 </div> |
| 47 </template> | 48 </template> |
| 48 </div> | 49 </div> |
| 49 </template> | 50 </template> |
| 50 <script src="zoom_levels.js"></script> | 51 <script src="zoom_levels.js"></script> |
| 51 </dom-module> | 52 </dom-module> |
| OLD | NEW |