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

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

Issue 2894773002: [MD settings] remove unwanted separator line (Closed)
Patch Set: mirror icons 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 2
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior /iron-resizable-behavior.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior /iron-resizable-behavior.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.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-icon-button/paper -icon-button.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp le.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp le.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
9 <link rel="import" href="../icons.html"> 9 <link rel="import" href="../icons.html">
10 <link rel="import" href="../route.html"> 10 <link rel="import" href="../route.html">
11 <link rel="import" href="settings_subpage_search.html"> 11 <link rel="import" href="settings_subpage_search.html">
12 <link rel="import" href="../settings_shared_css.html"> 12 <link rel="import" href="../settings_shared_css.html">
13 13
14 <dom-module id="settings-subpage"> 14 <dom-module id="settings-subpage">
15 <template> 15 <template>
16 <style include="settings-shared"> 16 <style include="settings-shared">
17 :host { 17 :host {
18 display: block; 18 display: block;
19 padding-bottom: 60px; 19 padding-bottom: 60px;
20 } 20 }
21 21
22 :host-context([dir=rtl]) paper-icon-button[icon='settings:arrow-back'] {
dschuyler 2017/05/23 01:24:55 This is the only place settings:arrow-back is used
23 transform: scaleX(-1); /* Flip on the X axis (aka mirror). */
24 }
25
22 #headerLine { 26 #headerLine {
23 min-height: 40px; 27 min-height: 40px;
24 padding-bottom: 12px; 28 padding-bottom: 12px;
25 padding-top: 8px; 29 padding-top: 8px;
26 } 30 }
27 31
28 #learnMore { 32 #learnMore {
29 @apply(--cr-paper-icon-button-margin); 33 @apply(--cr-paper-icon-button-margin);
30 align-items: center; 34 align-items: center;
31 display: flex; 35 display: flex;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 </settings-subpage-search> 80 </settings-subpage-search>
77 </template> 81 </template>
78 <template is="dom-if" if="[[showSpinner]]"> 82 <template is="dom-if" if="[[showSpinner]]">
79 <paper-spinner active></paper-spinner> 83 <paper-spinner active></paper-spinner>
80 </template> 84 </template>
81 </div> 85 </div>
82 <content></content> 86 <content></content>
83 </template> 87 </template>
84 <script src="settings_subpage.js"></script> 88 <script src="settings_subpage.js"></script>
85 </dom-module> 89 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698