Chromium Code Reviews| Index: chrome/browser/resources/settings/settings_icons_css.html |
| diff --git a/chrome/browser/resources/settings/settings_icons_css.html b/chrome/browser/resources/settings/settings_icons_css.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0714c19951a45e12a0647003447faf2976a54005 |
| --- /dev/null |
| +++ b/chrome/browser/resources/settings/settings_icons_css.html |
| @@ -0,0 +1,23 @@ |
| +<link rel="import" href="chrome://resources/html/polymer.html"> |
| + |
| +<!-- 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.
|
| +<dom-module id="settings-icons"> |
| + <template> |
| + <style> |
| + button[is='paper-icon-button-light'].icon-visibility { |
| + background-image: url(chrome://resources/images/settings_icon_visibility.svg); |
| + } |
| + button[is='paper-icon-button-light'].icon-arrow-back { |
| + background-image: url(chrome://resources/images/settings_icon_arrow_back.svg); |
| + } |
| + <if expr="chromeos"> |
| + button[is='paper-icon-button-light'].icon-flip { |
| + background-image: url(chrome://resources/images/settings_icon_flip.svg); |
| + } |
| + button[is='paper-icon-button-light'].icon-camera-alt { |
| + background-image: url(chrome://resources/images/settings_icon_camera_alt.svg); |
| + } |
| + </if> |
| + </style> |
| + </template> |
| +</dom-module> |