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

Side by Side Diff: chrome/browser/resources/settings/settings_dialog.html

Issue 1854303003: MD Settings: Fix <settings-dialog> resizing behavior. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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-icons/iron-icons.h tml"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-behavior.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
6 6
7 <dom-module id="settings-dialog"> 7 <dom-module id="settings-dialog">
8 <template> 8 <template>
9 <style include="paper-dialog-shared-styles"></style> 9 <style include="paper-dialog-shared-styles"></style>
10 <style> 10 <style>
(...skipping 18 matching lines...) Expand all
29 align-items: center; 29 align-items: center;
30 border-bottom: 1px solid var(--paper-grey-300); 30 border-bottom: 1px solid var(--paper-grey-300);
31 display: flex; 31 display: flex;
32 padding-bottom: 5px; 32 padding-bottom: 5px;
33 padding-top: 5px; 33 padding-top: 5px;
34 } 34 }
35 35
36 :host { 36 :host {
37 max-width: 800px; 37 max-width: 800px;
38 min-width: 500px; 38 min-width: 500px;
39 overflow: auto;
39 } 40 }
40 41
41 :host ::content .body { 42 :host ::content .body {
42 margin-bottom: 35px; 43 margin-bottom: 35px;
43 } 44 }
44 45
45 :host ::content .button-container { 46 :host ::content .button-container {
46 display: flex; 47 display: flex;
47 justify-content: flex-end; 48 justify-content: flex-end;
48 } 49 }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 <content select=".body"></content> 90 <content select=".body"></content>
90 <content select=".button-container"></content> 91 <content select=".button-container"></content>
91 </div> 92 </div>
92 </div> 93 </div>
93 <div class="footer-container"> 94 <div class="footer-container">
94 <content select=".footer"></content> 95 <content select=".footer"></content>
95 </div> 96 </div>
96 </template> 97 </template>
97 <script src="settings_dialog.js"></script> 98 <script src="settings_dialog.js"></script>
98 </dom-module> 99 </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