| OLD | NEW |
| 1 <html><head><!-- | 1 <html><head><!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><!-- | 9 --><!-- |
| 10 @license | 10 @license |
| (...skipping 3330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3341 border-radius: 2px; | 3341 border-radius: 2px; |
| 3342 margin: 1px 10px; | 3342 margin: 1px 10px; |
| 3343 pointer-events: none; | 3343 pointer-events: none; |
| 3344 transform: scale(0.8); | 3344 transform: scale(0.8); |
| 3345 } | 3345 } |
| 3346 | 3346 |
| 3347 :host { | 3347 :host { |
| 3348 box-sizing: border-box; | 3348 box-sizing: border-box; |
| 3349 display: block; | 3349 display: block; |
| 3350 overflow: auto; | 3350 overflow: auto; |
| 3351 padding-top: var(--first-card-padding-top); | |
| 3352 } | 3351 } |
| 3353 | 3352 |
| 3354 iron-list { | 3353 iron-list { |
| 3355 margin: var(--card-sizing_-_margin); max-width: var(--card-sizing_-_max-width)
; min-width: var(--card-sizing_-_min-width); padding: var(--card-sizing_-_paddin
g); width: var(--card-sizing_-_width); | 3354 margin: var(--card-sizing_-_margin); max-width: var(--card-sizing_-_max-width)
; min-width: var(--card-sizing_-_min-width); padding: var(--card-sizing_-_paddin
g); width: var(--card-sizing_-_width); |
| 3355 margin-top: var(--first-card-padding-top); |
| 3356 } | 3356 } |
| 3357 | 3357 |
| 3358 </style> | 3358 </style> |
| 3359 <div id="no-results" class="centered-message" hidden$="[[hasResults(historyD
ata_.length)]]"> | 3359 <div id="no-results" class="centered-message" hidden$="[[hasResults(historyD
ata_.length)]]"> |
| 3360 {{noResultsMessage(searchedTerm, querying)}} | 3360 {{noResultsMessage(searchedTerm, querying)}} |
| 3361 </div> | 3361 </div> |
| 3362 <iron-list items="{{historyData_}}" as="item" id="infinite-list" hidden$="[[
!hasResults(historyData_.length)]]"> | 3362 <iron-list items="{{historyData_}}" as="item" id="infinite-list" hidden$="[[
!hasResults(historyData_.length)]]"> |
| 3363 <template> | 3363 <template> |
| 3364 <history-item tabindex$="[[tabIndex]]" item="[[item]]" selected="{{item.
selected}}" is-card-start="[[isCardStart_(item, index, historyData_.length)]]" i
s-card-end="[[isCardEnd_(item, index, historyData_.length)]]" has-time-gap="[[ne
edsTimeGap_(item, index, historyData_.length)]]" search-term="[[searchedTerm]]"
number-of-items="[[historyData_.length]]" path="[[pathForItem_(index)]]" index="
[[index]]" iron-list-tab-index="[[tabIndex]]" last-focused="{{lastFocused_}}"> | 3364 <history-item tabindex$="[[tabIndex]]" item="[[item]]" selected="{{item.
selected}}" is-card-start="[[isCardStart_(item, index, historyData_.length)]]" i
s-card-end="[[isCardEnd_(item, index, historyData_.length)]]" has-time-gap="[[ne
edsTimeGap_(item, index, historyData_.length)]]" search-term="[[searchedTerm]]"
number-of-items="[[historyData_.length]]" path="[[pathForItem_(index)]]" index="
[[index]]" iron-list-tab-index="[[tabIndex]]" last-focused="{{lastFocused_}}"> |
| 3365 </history-item> | 3365 </history-item> |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3943 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}"
show-footer="[[showSidebarFooter]]" drawer=""> | 3943 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}"
show-footer="[[showSidebarFooter]]" drawer=""> |
| 3944 </history-side-bar> | 3944 </history-side-bar> |
| 3945 </app-drawer> | 3945 </app-drawer> |
| 3946 </template> | 3946 </template> |
| 3947 | 3947 |
| 3948 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> | 3948 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> |
| 3949 </iron-media-query> | 3949 </iron-media-query> |
| 3950 </template> | 3950 </template> |
| 3951 </dom-module> | 3951 </dom-module> |
| 3952 <script src="app.crisper.js"></script></body></html> | 3952 <script src="app.crisper.js"></script></body></html> |
| OLD | NEW |