| 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/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> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 background: rgb(68, 136, 255); | 30 background: rgb(68, 136, 255); |
| 31 } | 31 } |
| 32 | 32 |
| 33 h1 { | 33 h1 { |
| 34 @apply(--layout-flex); | 34 @apply(--layout-flex); |
| 35 font-size: 16px; | 35 font-size: 16px; |
| 36 font-weight: 400; | 36 font-weight: 400; |
| 37 padding-left: 24px; | 37 padding-left: 24px; |
| 38 } | 38 } |
| 39 | 39 |
| 40 #search-input { |
| 41 -webkit-padding-end: 20px; |
| 42 } |
| 43 |
| 40 #items { | 44 #items { |
| 41 margin: 0 auto; | 45 margin: 0 auto; |
| 42 max-width: var(--card-max-width); | 46 max-width: var(--card-max-width); |
| 43 } | 47 } |
| 44 | 48 |
| 45 #number-selected { | 49 #number-selected { |
| 46 @apply(--layout-flex); | 50 @apply(--layout-flex); |
| 47 } | 51 } |
| 48 | 52 |
| 49 paper-icon-button { | 53 paper-icon-button { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 <paper-button on-tap="onClearBrowsingDataTap_" | 109 <paper-button on-tap="onClearBrowsingDataTap_" |
| 106 id="clear-browsing-data-button"> | 110 id="clear-browsing-data-button"> |
| 107 $i18n{clearBrowsingData} | 111 $i18n{clearBrowsingData} |
| 108 </paper-button> | 112 </paper-button> |
| 109 </div> | 113 </div> |
| 110 <div id="back-padding"></div> | 114 <div id="back-padding"></div> |
| 111 </div> | 115 </div> |
| 112 </template> | 116 </template> |
| 113 <script src="chrome://history/history_toolbar.js"></script> | 117 <script src="chrome://history/history_toolbar.js"></script> |
| 114 </dom-module> | 118 </dom-module> |
| OLD | NEW |