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

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

Issue 2726113003: MD Settings: re-fix relative paper-input-label font-size. (Closed)
Patch Set: hardcode line-height so clear-icon doesn't push content down when appearing 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
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">
(...skipping 14 matching lines...) Expand all
25 .md-select.address-column { 25 .md-select.address-column {
26 -webkit-margin-end: 0; 26 -webkit-margin-end: 0;
27 margin-bottom: 0; 27 margin-bottom: 0;
28 } 28 }
29 29
30 #select-row { 30 #select-row {
31 display: block; 31 display: block;
32 } 32 }
33 33
34 #select-label { 34 #select-label {
35 color: var(--light-theme-secondary-color); 35 /* Mimic other paper-input floating labels. */
36 font-size: 12px 36 -webkit-transform: scale(0.75);
37 color: var(--light-theme-secondary-color);
38 transform: scale(0.75);
39 transform-origin: left;
40 width: 133%;
41 @apply(--paper-input-container-label-floating);
37 } 42 }
38 43
39 .long { 44 .long {
40 width: var(--paper-input-max-width); 45 width: var(--paper-input-max-width);
41 } 46 }
42 47
43 #saveButton { 48 #saveButton {
44 -webkit-margin-start: 8px; 49 -webkit-margin-start: 8px;
45 } 50 }
46 51
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 </paper-button> 120 </paper-button>
116 <paper-button id="saveButton" class="action-button" 121 <paper-button id="saveButton" class="action-button"
117 disabled="[[!canSave_]]" on-tap="onSaveButtonTap_"> 122 disabled="[[!canSave_]]" on-tap="onSaveButtonTap_">
118 $i18n{save} 123 $i18n{save}
119 </paper-button> 124 </paper-button>
120 </div> 125 </div>
121 </dialog> 126 </dialog>
122 </template> 127 </template>
123 <script src="address_edit_dialog.js"></script> 128 <script src="address_edit_dialog.js"></script>
124 </dom-module> 129 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698