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

Side by Side Diff: chrome/browser/resources/settings/settings_page/settings_subpage_search.html

Issue 2846103003: MD Settings: Add missing cr-hidden-style in settings_subpage_search.html. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field_behavior.html"> 1 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field_behavior.html">
2 <link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html">
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html">
7 8
8 <dom-module id="settings-subpage-search"> 9 <dom-module id="settings-subpage-search">
9 <template> 10 <template>
10 <style> 11 <style include="cr-hidden-style">
11 :host { 12 :host {
12 --subpage-search-underline: { 13 --subpage-search-underline: {
13 margin-bottom: -2px; 14 margin-bottom: -2px;
14 margin-top: -2px; 15 margin-top: -2px;
15 } 16 }
16 } 17 }
17 18
18 :host { 19 :host {
19 --paper-input-container-underline: var(--subpage-search-underline); 20 --paper-input-container-underline: var(--subpage-search-underline);
20 --paper-input-container-underline-focus: 21 --paper-input-container-underline-focus:
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 on-input="onSearchTermInput" aria-labelledby="prompt" incremental 72 on-input="onSearchTermInput" aria-labelledby="prompt" incremental
72 autofocus$="[[autofocus]]" placeholder="[[label]]"> 73 autofocus$="[[autofocus]]" placeholder="[[label]]">
73 <paper-icon-button suffix icon="cr:cancel" id="clearSearch" 74 <paper-icon-button suffix icon="cr:cancel" id="clearSearch"
74 on-tap="onTapClear_" title="[[clearLabel]]" 75 on-tap="onTapClear_" title="[[clearLabel]]"
75 hidden$="[[!hasSearchText]]"> 76 hidden$="[[!hasSearchText]]">
76 </paper-icon-button> 77 </paper-icon-button>
77 </paper-input-container> 78 </paper-input-container>
78 </template> 79 </template>
79 <script src="settings_subpage_search.js"></script> 80 <script src="settings_subpage_search.js"></script>
80 </dom-module> 81 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698