1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-21 07:06:39 +02:00

fix auto-type layout

This commit is contained in:
antelle 2016-04-23 18:19:48 +03:00
parent 463b383ba7
commit b16f07b72c
3 changed files with 7 additions and 1 deletions

View File

@ -764,7 +764,7 @@ var DetailsView = Backbone.View.extend({
return;
}
this.views.autoType = new DetailsAutoTypeView({
el: this.$el.find('.details__body-fields'),
el: this.$el.find('.details__body-after'),
model: this.model
}).render();
},

View File

@ -127,6 +127,7 @@
@include flex(1);
@include display(flex);
@include align-items(stretch);
@include align-content(flex-start);
@include flex-direction(row);
@include justify-content(flex-start);
@include flex-wrap(wrap);
@ -147,6 +148,10 @@
@include flex-direction(column);
@include justify-content(flex-start);
}
&-after {
@include flex(100% 1 0);
}
}
&__field {

View File

@ -26,6 +26,7 @@
</div>
<div class="details__body-aside">
</div>
<div class="details__body-after"></div>
</div>
<div class="scroller__bar-wrapper"><div class="scroller__bar"></div></div>
</div>