OLD | NEW |
1 <html><head><!-- | 1 <html><head><!-- |
2 @license | 2 @license |
3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2016 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 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1190 </style> | 1190 </style> |
1191 | 1191 |
1192 <div id="scrim" on-tap="close"></div> | 1192 <div id="scrim" on-tap="close"></div> |
1193 | 1193 |
1194 <div id="contentContainer"> | 1194 <div id="contentContainer"> |
1195 <content></content> | 1195 <content></content> |
1196 </div> | 1196 </div> |
1197 </template> | 1197 </template> |
1198 | 1198 |
1199 </dom-module> | 1199 </dom-module> |
| 1200 <dom-module id="iron-overlay-backdrop" assetpath="chrome://resources/polymer/v1_
0/iron-overlay-behavior/" css-build="shadow"> |
| 1201 |
| 1202 <template> |
| 1203 <style scope="iron-overlay-backdrop">:host { |
| 1204 position: fixed; |
| 1205 top: 0; |
| 1206 left: 0; |
| 1207 width: 100%; |
| 1208 height: 100%; |
| 1209 background-color: var(--iron-overlay-backdrop-background-color, #000); |
| 1210 opacity: 0; |
| 1211 transition: opacity 0.2s; |
| 1212 pointer-events: none; |
| 1213 ; |
| 1214 } |
| 1215 |
| 1216 :host(.opened) { |
| 1217 opacity: var(--iron-overlay-backdrop-opacity, 0.6); |
| 1218 pointer-events: auto; |
| 1219 ; |
| 1220 } |
| 1221 |
| 1222 </style> |
| 1223 |
| 1224 <content></content> |
| 1225 </template> |
| 1226 |
| 1227 </dom-module> |
| 1228 |
| 1229 <script src="chrome://resources/polymer/v1_0/web-animations-js/web-animations-ne
xt-lite.min.js"></script> |
| 1230 |
| 1231 |
| 1232 <dom-module id="iron-dropdown" assetpath="chrome://resources/polymer/v1_0/iron-d
ropdown/" css-build="shadow"> |
| 1233 <template> |
| 1234 <style scope="iron-dropdown">:host { |
| 1235 position: fixed; |
| 1236 } |
| 1237 |
| 1238 #contentWrapper ::content > * { |
| 1239 overflow: auto; |
| 1240 } |
| 1241 |
| 1242 #contentWrapper.animating ::content > * { |
| 1243 overflow: hidden; |
| 1244 } |
| 1245 |
| 1246 </style> |
| 1247 |
| 1248 <div id="contentWrapper"> |
| 1249 <content id="content" select=".dropdown-content"></content> |
| 1250 </div> |
| 1251 </template> |
| 1252 |
| 1253 </dom-module> |
1200 <dom-module id="paper-tab" assetpath="chrome://resources/polymer/v1_0/paper-tabs
/" css-build="shadow"> | 1254 <dom-module id="paper-tab" assetpath="chrome://resources/polymer/v1_0/paper-tabs
/" css-build="shadow"> |
1201 <template> | 1255 <template> |
1202 <style scope="paper-tab">:host { | 1256 <style scope="paper-tab">:host { |
1203 display: var(--layout-inline_-_display); | 1257 display: var(--layout-inline_-_display); |
1204 -ms-flex-align: var(--layout-center_-_-ms-flex-align); -webkit-align-ite
ms: var(--layout-center_-_-webkit-align-items); align-items: var(--layout-center
_-_align-items); | 1258 -ms-flex-align: var(--layout-center_-_-ms-flex-align); -webkit-align-ite
ms: var(--layout-center_-_-webkit-align-items); align-items: var(--layout-center
_-_align-items); |
1205 -ms-flex-pack: var(--layout-center-justified_-_-ms-flex-pack); -webkit-j
ustify-content: var(--layout-center-justified_-_-webkit-justify-content); justif
y-content: var(--layout-center-justified_-_justify-content); | 1259 -ms-flex-pack: var(--layout-center-justified_-_-ms-flex-pack); -webkit-j
ustify-content: var(--layout-center-justified_-_-webkit-justify-content); justif
y-content: var(--layout-center-justified_-_justify-content); |
1206 -ms-flex: var(--layout-flex-auto_-_-ms-flex); -webkit-flex: var(--layout
-flex-auto_-_-webkit-flex); flex: var(--layout-flex-auto_-_flex); | 1260 -ms-flex: var(--layout-flex-auto_-_-ms-flex); -webkit-flex: var(--layout
-flex-auto_-_-webkit-flex); flex: var(--layout-flex-auto_-_flex); |
1207 | 1261 |
1208 position: relative; | 1262 position: relative; |
1209 padding: 0 12px; | 1263 padding: 0 12px; |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1393 <content select="*"></content> | 1447 <content select="*"></content> |
1394 </div> | 1448 </div> |
1395 </div> | 1449 </div> |
1396 | 1450 |
1397 <paper-icon-button icon="paper-tabs:chevron-right" class$="[[_computeScrollB
uttonClass(_rightHidden, scrollable, hideScrollButtons)]]" on-up="_onScrollButto
nUp" on-down="_onRightScrollButtonDown" tabindex="-1"></paper-icon-button> | 1451 <paper-icon-button icon="paper-tabs:chevron-right" class$="[[_computeScrollB
uttonClass(_rightHidden, scrollable, hideScrollButtons)]]" on-up="_onScrollButto
nUp" on-down="_onRightScrollButtonDown" tabindex="-1"></paper-icon-button> |
1398 | 1452 |
1399 </template> | 1453 </template> |
1400 | 1454 |
1401 </dom-module> | 1455 </dom-module> |
1402 </div><script src="lazy_load.crisper.js"></script></body></html> | 1456 </div><script src="lazy_load.crisper.js"></script></body></html> |
OLD | NEW |