OLD | NEW |
---|---|
(Empty) | |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
2 | |
3 <!-- Common icon classes for Material Design settings page. --> | |
4 <dom-module id="settings-icons"> | |
5 <template> | |
6 <style> | |
7 button[is='paper-icon-button-light'].icon-arrow-back { | |
8 background-image: url(./images/settings_icon_arrow_back.svg); | |
dschuyler
2017/06/09 23:48:03
nit: maybe go without the ./
scottchen
2017/06/10 00:15:22
I actually had the "./" intentionally, to be more
| |
9 } | |
10 button[is='paper-icon-button-light'].icon-visibility { | |
11 background-image: url(./images/settings_icon_visibility.svg); | |
12 } | |
13 <if expr="chromeos"> | |
14 button[is='paper-icon-button-light'].icon-add-circle { | |
15 background-image: url(./images/settings_icon_add_circle.svg); | |
16 } | |
17 button[is='paper-icon-button-light'].icon-add-wifi { | |
18 background-image: url(./images/settings_icon_add_wifi.svg); | |
19 } | |
20 button[is='paper-icon-button-light'].icon-camera-alt { | |
21 background-image: url(./images/settings_icon_camera_alt.svg); | |
22 } | |
23 button[is='paper-icon-button-light'].icon-flip { | |
24 background-image: url(./images/settings_icon_flip.svg); | |
25 } | |
26 </if> | |
27 </style> | |
28 </template> | |
29 </dom-module> | |
OLD | NEW |