Chromium Code Reviews| Index: chrome/browser/resources/settings/settings_page/settings_subpage.html |
| diff --git a/chrome/browser/resources/settings/settings_page/settings_subpage.html b/chrome/browser/resources/settings/settings_page/settings_subpage.html |
| index a869431c81d3a2c94f56b8cfe099f143c96f4213..b158856fe47fad8949637da91f3b877bfa2c38e8 100644 |
| --- a/chrome/browser/resources/settings/settings_page/settings_subpage.html |
| +++ b/chrome/browser/resources/settings/settings_page/settings_subpage.html |
| @@ -11,11 +11,12 @@ |
| <template> |
| <style include="settings-shared"> |
| :host { |
| + --iron-icon-fill-color: var(--settings-nav-grey); |
| display: block; |
| } |
| .settings-box.first { |
| - padding-bottom: 16px; |
| + min-height: 40px; |
| padding-top: 8px; |
| } |
| @@ -27,9 +28,10 @@ |
| width: 36px; |
| } |
| - h2 { |
| + h1 { |
| color: var(--settings-nav-grey); |
| font-size: 107.6923%; /* go to 14px from 13px */ |
| + font-weight: 500; |
| } |
| settings-subpage-search { |
| @@ -39,7 +41,7 @@ |
| <div class="settings-box first"> |
| <paper-icon-button icon="settings:arrow-back" on-tap="onTapBack_"> |
| </paper-icon-button> |
| - <h2>[[pageTitle]]</h2> |
| + <h1>[[pageTitle]]</h1> |
|
dschuyler
2016/08/24 18:56:15
This is the top header (not a sub-header) so I
ch
hcarmona
2016/08/24 23:41:21
Sounds good.
|
| <template is="dom-if" if="[[searchLabel]]"> |
| <settings-subpage-search label="[[searchLabel]]" |
| on-search-changed="onSearchChanged_"> |