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 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
893 } | 893 } |
894 | 894 |
895 .action-button, .cancel-button { | 895 .action-button, .cancel-button { |
896 font-weight: 500; | 896 font-weight: 500; |
897 } | 897 } |
898 | 898 |
899 [actionable] { | 899 [actionable] { |
900 cursor: var(--cr-actionable_-_cursor); | 900 cursor: var(--cr-actionable_-_cursor); |
901 } | 901 } |
902 | 902 |
| 903 button[is='paper-icon-button-light'].subpage-arrow { |
| 904 background-image: url("chrome://resources/images/arrow_right.svg"); |
| 905 } |
| 906 |
| 907 button[is='paper-icon-button-light'].icon-external { |
| 908 background-image: url("chrome://resources/images/open_in_new.svg"); |
| 909 } |
| 910 |
| 911 .subpage-arrow, .icon-external { |
| 912 display: none; |
| 913 } |
| 914 |
| 915 [actionable] :-webkit-any(.subpage-arrow, .icon-external), [actionable]:-webkit-
any(.subpage-arrow, .icon-external) { |
| 916 display: block; |
| 917 } |
| 918 |
903 [scrollable] { | 919 [scrollable] { |
904 border-color: transparent; | 920 border-color: transparent; |
905 border-style: solid; | 921 border-style: solid; |
906 border-width: 1px 0; | 922 border-width: 1px 0; |
907 overflow-y: auto; | 923 overflow-y: auto; |
908 } | 924 } |
909 | 925 |
910 [scrollable].is-scrolled { | 926 [scrollable].is-scrolled { |
911 border-top-color: var(--google-grey-300); | 927 border-top-color: var(--google-grey-300); |
912 } | 928 } |
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 <content select="*"></content> | 1444 <content select="*"></content> |
1429 </div> | 1445 </div> |
1430 </div> | 1446 </div> |
1431 | 1447 |
1432 <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> | 1448 <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> |
1433 | 1449 |
1434 </template> | 1450 </template> |
1435 | 1451 |
1436 </dom-module> | 1452 </dom-module> |
1437 </div><script src="lazy_load.crisper.js"></script></body></html> | 1453 </div><script src="lazy_load.crisper.js"></script></body></html> |
OLD | NEW |