| OLD | NEW |
| (Empty) |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <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-icons/iron-icons.h
tml"> | |
| 4 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | |
| 5 | |
| 6 <dom-module id="settings-subheader"> | |
| 7 <template> | |
| 8 <style include="settings-shared"> | |
| 9 :host { | |
| 10 display: block; | |
| 11 margin: 8px 0 16px 0; | |
| 12 } | |
| 13 | |
| 14 :root { | |
| 15 --iron-icon-fill-color: var(--settings-nav-grey); | |
| 16 } | |
| 17 | |
| 18 paper-icon-button { | |
| 19 /* The inner icon is 20px in size. paper-icon-button has 8px padding. */ | |
| 20 height: 36px; | |
| 21 /* Centers the ripple on the icon with appropriate margin on right. */ | |
| 22 margin: 0 12px 0 -8px; | |
| 23 width: 36px; | |
| 24 } | |
| 25 | |
| 26 h2 { | |
| 27 color: var(--settings-nav-grey); | |
| 28 font-size: 107.6923%; /* go to 14px from 13px */ | |
| 29 } | |
| 30 </style> | |
| 31 <div class="settings-box first"> | |
| 32 <paper-icon-button icon="arrow-back" on-tap="onTapBack_"> | |
| 33 </paper-icon-button> | |
| 34 <h2>[[pageTitle]]</h2> | |
| 35 </div> | |
| 36 </template> | |
| 37 <script src="settings_subheader.js"></script> | |
| 38 </dom-module> | |
| OLD | NEW |