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:21
Please add a period and the end of the comment.
scottchen
2017/06/08 22:13:15
Done.
| |
4 <dom-module id="settings-icons"> | |
5 <template> | |
6 <style> | |
7 button[is='paper-icon-button-light'].icon-visibility { | |
8 background-image: url(chrome://resources/images/settings_icon_visibility .svg); | |
9 } | |
10 button[is='paper-icon-button-light'].icon-arrow-back { | |
11 background-image: url(chrome://resources/images/settings_icon_arrow_back .svg); | |
12 } | |
13 <if expr="chromeos"> | |
14 button[is='paper-icon-button-light'].icon-flip { | |
15 background-image: url(chrome://resources/images/settings_icon_flip.svg ); | |
16 } | |
17 button[is='paper-icon-button-light'].icon-camera-alt { | |
18 background-image: url(chrome://resources/images/settings_icon_camera_a lt.svg); | |
19 } | |
20 </if> | |
21 </style> | |
22 </template> | |
23 </dom-module> | |
OLD | NEW |