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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html

Issue 2748343007: MD Settings: words getting chopped off in paper-textarea. (Closed)
Patch Set: Created 3 years, 9 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/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/html/cr.html"> 2 <link rel="import" href="chrome://resources/html/cr.html">
3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
4 <link rel="import" href="chrome://resources/html/md_select_css.html"> 4 <link rel="import" href="chrome://resources/html/md_select_css.html">
5 <link rel="import" href="chrome://resources/html/polymer.html"> 5 <link rel="import" href="chrome://resources/html/polymer.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta rea.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta rea.html">
9 <link rel="import" href="../settings_shared_css.html"> 9 <link rel="import" href="../settings_shared_css.html">
10 <link rel="import" href="../settings_vars_css.html"> 10 <link rel="import" href="../settings_vars_css.html">
11 11
12 <dom-module id="settings-address-edit-dialog"> 12 <dom-module id="settings-address-edit-dialog">
13 <template> 13 <template>
14 <style include="settings-shared md-select"> 14 <style include="settings-shared md-select">
15 :host {
16 --iron-autogrow-textarea: {
17 box-sizing: border-box;
18 };
19 }
20
15 .address-row { 21 .address-row {
16 display: flex; 22 display: flex;
17 } 23 }
18 24
19 .address-column { 25 .address-column {
20 -webkit-margin-end: 16px; 26 -webkit-margin-end: 16px;
21 margin-bottom: 8px; 27 margin-bottom: 8px;
22 width: calc((var(--paper-input-max-width) - 16px) / 2); 28 width: calc((var(--paper-input-max-width) - 16px) / 2);
23 } 29 }
24 30
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 </paper-button> 127 </paper-button>
122 <paper-button id="saveButton" class="action-button" 128 <paper-button id="saveButton" class="action-button"
123 disabled="[[!canSave_]]" on-tap="onSaveButtonTap_"> 129 disabled="[[!canSave_]]" on-tap="onSaveButtonTap_">
124 $i18n{save} 130 $i18n{save}
125 </paper-button> 131 </paper-button>
126 </div> 132 </div>
127 </dialog> 133 </dialog>
128 </template> 134 </template>
129 <script src="address_edit_dialog.js"></script> 135 <script src="address_edit_dialog.js"></script>
130 </dom-module> 136 </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