OLD | NEW |
(Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 3 <!-- Common icon classes for Material Design WebUI. --> |
| 4 <dom-module id="cr-icons"> |
| 5 <template> |
| 6 <style> |
| 7 button[is='paper-icon-button-light'].subpage-arrow, |
| 8 paper-icon-button.subpage-arrow { |
| 9 background-image: url(../images/arrow_right.svg); |
| 10 } |
| 11 |
| 12 button[is='paper-icon-button-light'].icon-cancel { |
| 13 background-image: url(../images/icon_cancel.svg); |
| 14 } |
| 15 |
| 16 button[is='paper-icon-button-light'].icon-cancel-toolbar { |
| 17 background-image: url(../images/icon_cancel_toolbar.svg); |
| 18 } |
| 19 |
| 20 button[is='paper-icon-button-light'].icon-clear { |
| 21 background-image: url(../images/icon_clear.svg); |
| 22 } |
| 23 |
| 24 button[is='paper-icon-button-light'].icon-delete { |
| 25 background-image: url(../images/icon_delete.svg); |
| 26 } |
| 27 |
| 28 button[is='paper-icon-button-light'].icon-external { |
| 29 background-image: url(../images/open_in_new.svg); |
| 30 } |
| 31 |
| 32 button[is='paper-icon-button-light'].icon-more-vert { |
| 33 background-image: url(../images/icon_more_vert.svg); |
| 34 } |
| 35 |
| 36 button[is='paper-icon-button-light'].icon-settings { |
| 37 background-image: url(../images/icon_settings.svg); |
| 38 } |
| 39 |
| 40 button[is='paper-icon-button-light'].icon-search { |
| 41 background-image: url(../images/icon_search.svg); |
| 42 } |
| 43 |
| 44 button[is='paper-icon-button-light'].icon-arrow-dropdown { |
| 45 background-image: url(../images/icon_arrow_dropdown.svg); |
| 46 } |
| 47 </style> |
| 48 </template> |
| 49 </dom-module> |
OLD | NEW |