| 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 2419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2430 | 2430 |
| 2431 :host([narrow_]) #centeredContent { | 2431 :host([narrow_]) #centeredContent { |
| 2432 justify-content: flex-end; | 2432 justify-content: flex-end; |
| 2433 } | 2433 } |
| 2434 | 2434 |
| 2435 :host([narrow_][showing-search_]) #leftContent { | 2435 :host([narrow_][showing-search_]) #leftContent { |
| 2436 opacity: 0; | 2436 opacity: 0; |
| 2437 } | 2437 } |
| 2438 </style> | 2438 </style> |
| 2439 <div id="leftContent"> | 2439 <div id="leftContent"> |
| 2440 <paper-icon-button id="menuButton" icon="cr:menu" on-tap="onMenuTap_"> | 2440 <paper-icon-button id="menuButton" icon="cr:menu" on-tap="onMenuTap_" titl
e="[[menuLabel]]"> |
| 2441 </paper-icon-button> | 2441 </paper-icon-button> |
| 2442 <h1>[[pageName]]</h1> | 2442 <h1>[[pageName]]</h1> |
| 2443 </div> | 2443 </div> |
| 2444 | 2444 |
| 2445 <div id="centeredContent"> | 2445 <div id="centeredContent"> |
| 2446 <cr-toolbar-search-field id="search" narrow="[[narrow_]]" label="[[searchP
rompt]]" clear-label="[[clearLabel]]" spinner-active="[[spinnerActive]]" showing
-search="{{showingSearch_}}"> | 2446 <cr-toolbar-search-field id="search" narrow="[[narrow_]]" label="[[searchP
rompt]]" clear-label="[[clearLabel]]" spinner-active="[[spinnerActive]]" showing
-search="{{showingSearch_}}"> |
| 2447 </cr-toolbar-search-field> | 2447 </cr-toolbar-search-field> |
| 2448 <iron-media-query query="(max-width: 900px)" query-matches="{{narrow_}}"> | 2448 <iron-media-query query="(max-width: 900px)" query-matches="{{narrow_}}"> |
| 2449 </iron-media-query> | 2449 </iron-media-query> |
| 2450 </div> | 2450 </div> |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2668 text-align: right; | 2668 text-align: right; |
| 2669 text-overflow: ellipsis; | 2669 text-overflow: ellipsis; |
| 2670 white-space: nowrap; | 2670 white-space: nowrap; |
| 2671 } | 2671 } |
| 2672 | 2672 |
| 2673 :host-context([dir=rtl]) .rtl-reversible { | 2673 :host-context([dir=rtl]) .rtl-reversible { |
| 2674 transform: rotate(180deg); | 2674 transform: rotate(180deg); |
| 2675 } | 2675 } |
| 2676 </style> | 2676 </style> |
| 2677 <div id="toolbar-container"> | 2677 <div id="toolbar-container"> |
| 2678 <cr-toolbar id="main-toolbar" page-name="$i18n{title}" clear-label="$i18n{
clearSearch}" search-prompt="$i18n{searchPrompt}" hidden$="[[itemsSelected_]]" s
pinner-active="[[spinnerActive]]" show-menu="[[hasDrawer]]" on-search-changed="o
nSearchChanged_"> | 2678 <cr-toolbar id="main-toolbar" page-name="$i18n{title}" clear-label="$i18n{
clearSearch}" search-prompt="$i18n{searchPrompt}" hidden$="[[itemsSelected_]]" s
pinner-active="[[spinnerActive]]" show-menu="[[hasDrawer]]" menu-label="$i18n{hi
storyMenuButton}" on-search-changed="onSearchChanged_"> |
| 2679 </cr-toolbar> | 2679 </cr-toolbar> |
| 2680 <template is="dom-if" if="[[itemsSelected_]]"> | 2680 <template is="dom-if" if="[[itemsSelected_]]"> |
| 2681 <div id="overlay-wrapper" hidden$="[[!itemsSelected_]]"> | 2681 <div id="overlay-wrapper" hidden$="[[!itemsSelected_]]"> |
| 2682 <div id="overlay-buttons"> | 2682 <div id="overlay-buttons"> |
| 2683 <paper-icon-button icon="cr:clear" id="cancel-icon-button" on-tap="o
nClearSelectionTap_"></paper-icon-button> | 2683 <paper-icon-button icon="cr:clear" id="cancel-icon-button" on-tap="o
nClearSelectionTap_"></paper-icon-button> |
| 2684 <div id="number-selected">[[numberOfItemsSelected_(count)]]</div> | 2684 <div id="number-selected">[[numberOfItemsSelected_(count)]]</div> |
| 2685 <paper-button id="cancel-button" on-tap="onClearSelectionTap_"> | 2685 <paper-button id="cancel-button" on-tap="onClearSelectionTap_"> |
| 2686 $i18n{cancel} | 2686 $i18n{cancel} |
| 2687 </paper-button> | 2687 </paper-button> |
| 2688 <paper-button id="delete-button" on-tap="onDeleteTap_"> | 2688 <paper-button id="delete-button" on-tap="onDeleteTap_"> |
| (...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3988 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]"
route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> | 3988 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]"
route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> |
| 3989 </history-side-bar> | 3989 </history-side-bar> |
| 3990 </app-drawer> | 3990 </app-drawer> |
| 3991 </template> | 3991 </template> |
| 3992 | 3992 |
| 3993 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> | 3993 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> |
| 3994 </iron-media-query> | 3994 </iron-media-query> |
| 3995 </template> | 3995 </template> |
| 3996 </dom-module> | 3996 </dom-module> |
| 3997 <script src="app.crisper.js"></script></body></html> | 3997 <script src="app.crisper.js"></script></body></html> |
| OLD | NEW |