Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: chrome/browser/resources/settings/settings_icons_css.html

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: remove unnecessary assets from resources Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698