poster_expansion will only slide down now.
This commit is contained in:
parent
172e517b31
commit
b5ca30bf56
|
@ -15,7 +15,7 @@ Discourse.PosterExpansionView = Discourse.View.extend({
|
||||||
// Position the expansion when the post changes
|
// Position the expansion when the post changes
|
||||||
_visibleChanged: function() {
|
_visibleChanged: function() {
|
||||||
var post = this.get('controller.model'),
|
var post = this.get('controller.model'),
|
||||||
self = this;
|
div = this.$();
|
||||||
|
|
||||||
Em.run.schedule('afterRender', function() {
|
Em.run.schedule('afterRender', function() {
|
||||||
if (post) {
|
if (post) {
|
||||||
|
@ -25,8 +25,14 @@ Discourse.PosterExpansionView = Discourse.View.extend({
|
||||||
|
|
||||||
if (position) {
|
if (position) {
|
||||||
position.left += $avatar.width() + 5;
|
position.left += $avatar.width() + 5;
|
||||||
self.$().css(position);
|
div.css(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var maxWidth = div.width();
|
||||||
|
if (maxWidth < 250) {
|
||||||
|
maxWidth = 250;
|
||||||
|
}
|
||||||
|
div.css({ maxWidth: maxWidth });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -52,4 +58,4 @@ Discourse.PosterExpansionView = Discourse.View.extend({
|
||||||
$('html').off(clickOutsideEventName);
|
$('html').off(clickOutsideEventName);
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -11,9 +11,10 @@
|
||||||
margin-top: -2px;
|
margin-top: -2px;
|
||||||
background-color: $primary_background_color;
|
background-color: $primary_background_color;
|
||||||
padding: 12px 12px 5px 12px;
|
padding: 12px 12px 5px 12px;
|
||||||
max-width: 350px;
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 120px;
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
|
|
Loading…
Reference in New Issue