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 | |
dschuyler
2017/06/06 18:58:39
nit: no blank line
scottchen
2017/06/06 22:33:12
Done.
| |
8 button[is='paper-icon-button-light'].subpage-arrow, | |
9 paper-icon-button.subpage-arrow { | |
10 background-image: url(chrome://resources/images/arrow_right.svg); | |
11 } | |
12 | |
13 button[is='paper-icon-button-light'].icon-cancel { | |
14 background-image: url(chrome://resources/images/icon_cancel.svg); | |
15 } | |
16 | |
17 button[is='paper-icon-button-light'].icon-cancel-toolbar { | |
18 background-image: | |
19 url(chrome://resources/images/icon_cancel_toolbar.svg); | |
20 } | |
21 | |
22 button[is='paper-icon-button-light'].icon-clear { | |
23 background-image: url(chrome://resources/images/icon_clear.svg); | |
24 } | |
25 | |
26 button[is='paper-icon-button-light'].icon-delete { | |
27 background-image: url(chrome://resources/images/icon_delete.svg); | |
28 } | |
29 | |
30 button[is='paper-icon-button-light'].icon-external { | |
31 background-image: url(chrome://resources/images/open_in_new.svg); | |
32 } | |
33 | |
34 button[is='paper-icon-button-light'].icon-more-vert { | |
35 background-image: url(chrome://resources/images/icon_more_vert.svg); | |
36 } | |
37 | |
38 button[is='paper-icon-button-light'].icon-settings { | |
39 background-image: url(chrome://resources/images/icon_settings.svg); | |
40 } | |
41 | |
42 button[is='paper-icon-button-light'].icon-search { | |
43 background-image: url(chrome://resources/images/icon_search.svg); | |
44 } | |
45 | |
46 button[is='paper-icon-button-light'].icon-arrow-dropdown { | |
47 background-image: url(chrome://resources/images/icon_arrow_dropdown.svg) ; | |
48 } | |
49 </style> | |
50 </template> | |
51 </dom-module> | |
OLD | NEW |