| 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 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 </dom-module> | 862 </dom-module> |
| 863 <dom-module id="cr-dialog" assetpath="chrome://resources/cr_elements/cr_dialog/"
css-build="shadow"> | 863 <dom-module id="cr-dialog" assetpath="chrome://resources/cr_elements/cr_dialog/"
css-build="shadow"> |
| 864 <template> | 864 <template> |
| 865 <style scope="cr-dialog">:host { | 865 <style scope="cr-dialog">:host { |
| 866 border: 0; | 866 border: 0; |
| 867 border-radius: 2px; | 867 border-radius: 2px; |
| 868 bottom: 0; | 868 bottom: 0; |
| 869 color: inherit; | 869 color: inherit; |
| 870 padding: 0; | 870 padding: 0; |
| 871 top: 0; | 871 top: 0; |
| 872 width: 512px; |
| 872 } | 873 } |
| 873 | 874 |
| 874 :host::backdrop { | 875 :host::backdrop { |
| 875 background-color: rgba(0, 0, 0, 0.6); | 876 background-color: rgba(0, 0, 0, 0.6); |
| 876 bottom: 0; | 877 bottom: 0; |
| 877 left: 0; | 878 left: 0; |
| 878 position: fixed; | 879 position: fixed; |
| 879 right: 0; | 880 right: 0; |
| 880 top: 0; | 881 top: 0; |
| 881 } | 882 } |
| (...skipping 15 matching lines...) Expand all Loading... |
| 897 -webkit-margin-end: 6px; | 898 -webkit-margin-end: 6px; |
| 898 | 899 |
| 899 padding: 10px; | 900 padding: 10px; |
| 900 } | 901 } |
| 901 | 902 |
| 902 .body-container { | 903 .body-container { |
| 903 display: flex; | 904 display: flex; |
| 904 flex-direction: column; | 905 flex-direction: column; |
| 905 | 906 |
| 906 overflow: auto; | 907 overflow: auto; |
| 907 width: 512px; | |
| 908 } | 908 } |
| 909 | 909 |
| 910 :host ::content .body { | 910 :host ::content .body { |
| 911 padding-bottom: 12px; | 911 padding-bottom: 12px; |
| 912 padding-top: 12px; | 912 padding-top: 12px; |
| 913 } | 913 } |
| 914 | 914 |
| 915 :host ::content .body, :host ::content .title { | 915 :host ::content .body, :host ::content .title { |
| 916 -webkit-padding-end: 24px; | 916 -webkit-padding-end: 24px; |
| 917 -webkit-padding-start: 24px; | 917 -webkit-padding-start: 24px; |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1322 <content select="*"></content> | 1322 <content select="*"></content> |
| 1323 </div> | 1323 </div> |
| 1324 </div> | 1324 </div> |
| 1325 | 1325 |
| 1326 <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> | 1326 <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> |
| 1327 | 1327 |
| 1328 </template> | 1328 </template> |
| 1329 | 1329 |
| 1330 </dom-module> | 1330 </dom-module> |
| 1331 </div><script src="lazy_load.crisper.js"></script></body></html> | 1331 </div><script src="lazy_load.crisper.js"></script></body></html> |
| OLD | NEW |