mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-28 01:50:09 +00:00
Make sure the post-image div is always the same height
Otherwise it flickers and is weird and stuff. Bug: 58431 Change-Id: Ic7d7d0bededede9b3cedb4ebd8efdcfae2209127
This commit is contained in:
parent
c17be3b124
commit
27e2db75f9
|
@ -32,7 +32,12 @@
|
|||
|
||||
.mlb-controls {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.mlb-post-image {
|
||||
background-color: #e4e2e1;
|
||||
position: absolute;
|
||||
min-height: 83px;
|
||||
}
|
||||
|
||||
.mw-mlb-controls {
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
};
|
||||
|
||||
LIP.initializeInterface = function () {
|
||||
this.$postDiv.css( 'top', ( $( window ).height() - 96 ) + 'px' );
|
||||
this.$postDiv.css( 'top', ( $( window ).height() - 83 ) + 'px' );
|
||||
|
||||
this.initializeHeader();
|
||||
this.initializeNavigation();
|
||||
|
|
Loading…
Reference in a new issue