| 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/paper-icon-button/paper
-icon-button.html"> | 2 <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-spinner/paper-spi
nner-lite.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner-lite.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field_behavior.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc
h_field_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 | 6 |
| 7 <dom-module id="cr-toolbar-search-field"> | 7 <dom-module id="cr-toolbar-search-field"> |
| 8 <template> | 8 <template> |
| 9 <style> | 9 <style> |
| 10 :host { | 10 :host { |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 :host([showing-search][spinner-active]) #icon { | 119 :host([showing-search][spinner-active]) #icon { |
| 120 opacity: 0; | 120 opacity: 0; |
| 121 } | 121 } |
| 122 | 122 |
| 123 :host([narrow][showing-search]) { | 123 :host([narrow][showing-search]) { |
| 124 width: 100%; | 124 width: 100%; |
| 125 } | 125 } |
| 126 | 126 |
| 127 :host([narrow][showing-search]) #icon, | 127 :host([narrow][showing-search]) #icon, |
| 128 :host([narrow][showing-search]) paper-spinner-lite { | 128 :host([narrow][showing-search]) paper-spinner-lite { |
| 129 -webkit-margin-start: 18px; | 129 -webkit-margin-start: var(--cr-control-spacing); |
| 130 } | 130 } |
| 131 </style> | 131 </style> |
| 132 <template is="dom-if" if="[[isSpinnerShown_]]"> | 132 <template is="dom-if" if="[[isSpinnerShown_]]"> |
| 133 <paper-spinner-lite active> | 133 <paper-spinner-lite active> |
| 134 </paper-spinner-lite> | 134 </paper-spinner-lite> |
| 135 </template> | 135 </template> |
| 136 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" | 136 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" |
| 137 tabindex$="[[computeIconTabIndex_(narrow)]]" | 137 tabindex$="[[computeIconTabIndex_(narrow)]]" |
| 138 aria-hidden$="[[computeIconAriaHidden_(narrow)]]"> | 138 aria-hidden$="[[computeIconAriaHidden_(narrow)]]"> |
| 139 </paper-icon-button> | 139 </paper-icon-button> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 151 </input> | 151 </input> |
| 152 </div> | 152 </div> |
| 153 <template is="dom-if" if="[[hasSearchText]]"> | 153 <template is="dom-if" if="[[hasSearchText]]"> |
| 154 <paper-icon-button icon="cr:cancel" id="clearSearch" | 154 <paper-icon-button icon="cr:cancel" id="clearSearch" |
| 155 title="[[clearLabel]]" on-tap="clearSearch_"> | 155 title="[[clearLabel]]" on-tap="clearSearch_"> |
| 156 </paper-icon-button> | 156 </paper-icon-button> |
| 157 </template> | 157 </template> |
| 158 </template> | 158 </template> |
| 159 <script src="cr_toolbar_search_field.js"></script> | 159 <script src="cr_toolbar_search_field.js"></script> |
| 160 </dom-module> | 160 </dom-module> |
| OLD | NEW |