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="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> | |
dschuyler
2017/06/06 18:58:39
The indentation looks incorrect here.
scottchen
2017/06/06 22:33:12
Wow, my sublime text went crazy! Fixed.
| |
21 </style> | |
22 </template> | |
23 </dom-module> | |
OLD | NEW |