1
0
Fork 0
Dieser Commit ist enthalten in:
Angus McLeod 2018-02-01 13:11:23 +08:00
Ursprung c0e0338f5f
Commit 794422658b
3 geänderte Dateien mit 18 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -41,6 +41,10 @@ export default {
WizardStep.reopen({ WizardStep.reopen({
classNameBindings: ['step.id'], classNameBindings: ['step.id'],
ensureStartsAtTop: function() {
window.scrollTo(0,0);
}.observes('step.id'),
showQuitButton: function() { showQuitButton: function() {
const index = this.get('step.index'); const index = this.get('step.index');
const required = this.get('wizard.required'); const required = this.get('wizard.required');

Datei anzeigen

@ -430,3 +430,7 @@ img.avatar {
color: rgb(231, 195, 0); color: rgb(231, 195, 0);
} }
} }
.textarea-field textarea {
height: 19em;
}

Datei anzeigen

@ -38,4 +38,14 @@
input, textarea { input, textarea {
border: 1px solid #919191; border: 1px solid #919191;
} }
.wizard-column {
.checkbox-field > label {
max-width: 80%;
}
.wizard-field .field-description img {
float: left;
}
}
} }