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

Unified Diff: ui/webui/resources/cr_elements/cr_search_field/cr_search_field.html

Issue 1947533002: Material WebUI: create shared icon file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase fix Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: ui/webui/resources/cr_elements/cr_search_field/cr_search_field.html
diff --git a/ui/webui/resources/cr_elements/cr_search_field/cr_search_field.html b/ui/webui/resources/cr_elements/cr_search_field/cr_search_field.html
index 8524c94860bfdc6ba5b5ca0fe38bfbdbdba8033e..846230acc532656181ad850357f21cc3689b0ce1 100644
--- a/ui/webui/resources/cr_elements/cr_search_field/cr_search_field.html
+++ b/ui/webui/resources/cr_elements/cr_search_field/cr_search_field.html
@@ -1,13 +1,13 @@
+<link rel="import" href="chrome://resources/cr_elements/cr_icons.html">
<link rel="import" href="chrome://resources/html/assert.html">
<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input-container.html">
<dom-module id="cr-search-field">
<template>
- <paper-icon-button icon="search" id="search-button"
+ <paper-icon-button icon="cr-icons:search" id="search-button"
disabled$="[[showingSearch_]]" title="[[label]]"
on-click="toggleShowingSearch_"></paper-icon-button>
<template is="dom-if" if="[[showingSearch_]]" id="search-container">
@@ -16,7 +16,7 @@
no-label-float>
<input is="iron-input" id="search-input" type="search"
placeholder="[[label]]" incremental>
- <paper-icon-button icon="cancel" id="clear-search"
+ <paper-icon-button icon="cr-icons:cancel" id="clear-search"
on-click="toggleShowingSearch_" title="[[clearLabel]]"
hidden$="[[!showingSearch_]]"></paper-icon-button>
</paper-input-container>
« no previous file with comments | « ui/webui/resources/cr_elements/cr_icons.html ('k') | ui/webui/resources/cr_elements/policy/cr_policy_indicator_behavior.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698