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

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

Issue 2656563006: MD Settings: Fix several global UI polish bugs. (Closed)
Patch Set: minor height adjustments Created 3 years, 10 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 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior /iron-resizable-behavior.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior /iron-resizable-behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="/icons.html"> 5 <link rel="import" href="/icons.html">
6 <link rel="import" href="/route.html"> 6 <link rel="import" href="/route.html">
7 <link rel="import" href="/settings_page/settings_subpage_search.html"> 7 <link rel="import" href="/settings_page/settings_subpage_search.html">
8 <link rel="import" href="/settings_shared_css.html"> 8 <link rel="import" href="/settings_shared_css.html">
9 9
10 <dom-module id="settings-subpage"> 10 <dom-module id="settings-subpage">
11 <template> 11 <template>
12 <style include="settings-shared"> 12 <style include="settings-shared">
13 :host { 13 :host {
14 --iron-icon-fill-color: var(--settings-nav-grey); 14 --iron-icon-fill-color: var(--settings-nav-grey);
15 display: block; 15 display: block;
16 padding-bottom: 60px; 16 padding-bottom: 60px;
17 } 17 }
18 18
19 .settings-box.first { 19 .settings-box.first {
20 min-height: 40px; 20 min-height: 40px;
21 padding-bottom: 24px;
dschuyler 2017/01/28 02:24:26 It may be an optical illusion, but the screen shot
scottchen 2017/01/30 22:39:28 I think I misunderstood the bug report for this on
21 padding-top: 8px; 22 padding-top: 8px;
22 } 23 }
23 24
25 .settings-box.first > h1 {
26 -webkit-margin-start: 4px;
27 }
28
24 paper-icon-button { 29 paper-icon-button {
25 /* Centers the ripple on the icon with appropriate margin on right. */ 30 /* Centers the ripple on the icon with appropriate margin on right. */
26 -webkit-margin-end: 8px; 31 -webkit-margin-end: 8px;
27 -webkit-margin-start: -8px; 32 -webkit-margin-start: -8px;
28 } 33 }
29 34
30 h1 { 35 h1 {
31 color: var(--settings-nav-grey); 36 color: var(--settings-nav-grey);
32 flex: 1; /* Push other items to the end. */ 37 flex: 1; /* Push other items to the end. */
33 font-size: 107.6923%; /* Go to 14px from 13px */ 38 font-size: 107.6923%; /* Go to 14px from 13px */
(...skipping 13 matching lines...) Expand all
47 <settings-subpage-search label="[[searchLabel]]" 52 <settings-subpage-search label="[[searchLabel]]"
48 on-search-changed="onSearchChanged_"> 53 on-search-changed="onSearchChanged_">
49 </settings-subpage-search> 54 </settings-subpage-search>
50 </template> 55 </template>
51 <content select=".subpage-title-extra"></content> 56 <content select=".subpage-title-extra"></content>
52 </div> 57 </div>
53 <content></content> 58 <content></content>
54 </template> 59 </template>
55 <script src="settings_subpage.js"></script> 60 <script src="settings_subpage.js"></script>
56 </dom-module> 61 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698