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