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

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

Issue 2278413004: [MD settings] padding at the bottom of sub-pages (Closed)
Patch Set: Created 4 years, 3 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/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 } 17 }
17 18
18 .settings-box.first { 19 .settings-box.first {
19 min-height: 40px; 20 min-height: 40px;
20 padding-top: 8px; 21 padding-top: 8px;
21 } 22 }
22 23
23 paper-icon-button { 24 paper-icon-button {
24 /* The inner icon is 20px in size. paper-icon-button has 8px padding. */ 25 /* The inner icon is 20px in size. paper-icon-button has 8px padding. */
25 height: 36px; 26 height: 36px;
(...skipping 19 matching lines...) Expand all
45 <template is="dom-if" if="[[searchLabel]]"> 46 <template is="dom-if" if="[[searchLabel]]">
46 <settings-subpage-search label="[[searchLabel]]" 47 <settings-subpage-search label="[[searchLabel]]"
47 on-search-changed="onSearchChanged_"> 48 on-search-changed="onSearchChanged_">
48 </settings-subpage-search> 49 </settings-subpage-search>
49 </template> 50 </template>
50 </div> 51 </div>
51 <content></content> 52 <content></content>
52 </template> 53 </template>
53 <script src="settings_subpage.js"></script> 54 <script src="settings_subpage.js"></script>
54 </dom-module> 55 </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