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

Side by Side Diff: ui/webui/resources/cr_elements/cr_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 WebUI. -->
4 <dom-module id="cr-icons">
5 <template>
6 <style>
7 button[is='paper-icon-button-light'].subpage-arrow,
8 paper-icon-button.subpage-arrow {
9 background-image: url(../images/arrow_right.svg);
10 }
11
12 button[is='paper-icon-button-light'].icon-cancel {
13 background-image: url(../images/icon_cancel.svg);
14 }
15
16 button[is='paper-icon-button-light'].icon-cancel-toolbar {
17 background-image: url(../images/icon_cancel_toolbar.svg);
18 }
19
20 button[is='paper-icon-button-light'].icon-clear {
21 background-image: url(../images/icon_clear.svg);
22 }
23
24 button[is='paper-icon-button-light'].icon-delete {
25 background-image: url(../images/icon_delete.svg);
26 }
27
28 button[is='paper-icon-button-light'].icon-external {
29 background-image: url(../images/open_in_new.svg);
30 }
31
32 button[is='paper-icon-button-light'].icon-more-vert {
33 background-image: url(../images/icon_more_vert.svg);
34 }
35
36 button[is='paper-icon-button-light'].icon-settings {
37 background-image: url(../images/icon_settings.svg);
38 }
39
40 button[is='paper-icon-button-light'].icon-search {
41 background-image: url(../images/icon_search.svg);
42 }
43
44 button[is='paper-icon-button-light'].icon-arrow-dropdown {
45 background-image: url(../images/icon_arrow_dropdown.svg);
46 }
47 </style>
48 </template>
49 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698