| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.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.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field.html"> |
| 6 <link rel="import" href="chrome://history/shared_style.html"> | 6 <link rel="import" href="chrome://history/shared_style.html"> |
| 7 | 7 |
| 8 <dom-module id="history-toolbar"> | 8 <dom-module id="history-toolbar"> |
| 9 <template> | 9 <template> |
| 10 <style include="shared-style"></style> | 10 <style include="shared-style"></style> |
| 11 <style> | 11 <style> |
| 12 :host { | 12 :host { |
| 13 background: rgb(63, 85, 102); | 13 background: rgb(52, 73, 94); |
| 14 color: #fff; | 14 color: #fff; |
| 15 height: 56px; | 15 height: 56px; |
| 16 transition: background-color 150ms; | 16 transition: background-color 150ms; |
| 17 } | 17 } |
| 18 | 18 |
| 19 :host, | 19 :host, |
| 20 #items, | 20 #items, |
| 21 #main-content, | 21 #main-content, |
| 22 #button-container, | 22 #button-container, |
| 23 #toolbar-container { | 23 #toolbar-container { |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 <paper-button on-tap="onClearBrowsingDataTap_" | 105 <paper-button on-tap="onClearBrowsingDataTap_" |
| 106 id="clear-browsing-data-button"> | 106 id="clear-browsing-data-button"> |
| 107 $i18n{clearBrowsingData} | 107 $i18n{clearBrowsingData} |
| 108 </paper-button> | 108 </paper-button> |
| 109 </div> | 109 </div> |
| 110 <div id="back-padding"></div> | 110 <div id="back-padding"></div> |
| 111 </div> | 111 </div> |
| 112 </template> | 112 </template> |
| 113 <script src="chrome://history/history_toolbar.js"></script> | 113 <script src="chrome://history/history_toolbar.js"></script> |
| 114 </dom-module> | 114 </dom-module> |
| OLD | NEW |