| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.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/icon.html"> | 3 <link rel="import" href="chrome://resources/html/icon.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop
down.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop
down.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="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> |
| 7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_
browser_proxy.html"> | 7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_
browser_proxy.html"> |
| 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 9 | 9 |
| 10 <dom-module id="settings-startup-url-entry"> | 10 <dom-module id="settings-startup-url-entry"> |
| 11 <template> | 11 <template> |
| 12 <style include="settings-shared"> | 12 <style include="settings-shared"> |
| 13 .favicon-image { | |
| 14 background-size: contain; | |
| 15 background-repeat: no-repeat; | |
| 16 height: 16px; | |
| 17 width: 16px; | |
| 18 } | |
| 19 | |
| 20 .dropdown-content { | 13 .dropdown-content { |
| 21 background: white; | 14 background: white; |
| 22 box-shadow: 0 2px 6px grey; | 15 box-shadow: 0 2px 6px grey; |
| 23 } | 16 } |
| 24 | 17 |
| 25 paper-item:hover { | 18 paper-item:hover { |
| 26 background-color: var(--settings-hover-color); | 19 background-color: var(--settings-hover-color); |
| 27 } | 20 } |
| 28 </style> | 21 </style> |
| 29 <div class="list-item underbar"> | 22 <div class="list-item underbar"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 44 <paper-item id="remove" on-tap="onRemoveTap_"> | 37 <paper-item id="remove" on-tap="onRemoveTap_"> |
| 45 $i18n{onStartupRemove} | 38 $i18n{onStartupRemove} |
| 46 </paper-item> | 39 </paper-item> |
| 47 </div> | 40 </div> |
| 48 </iron-dropdown> | 41 </iron-dropdown> |
| 49 </template> | 42 </template> |
| 50 </div> | 43 </div> |
| 51 </template> | 44 </template> |
| 52 <script src="startup_url_entry.js"></script> | 45 <script src="startup_url_entry.js"></script> |
| 53 </dom-module> | 46 </dom-module> |
| OLD | NEW |