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