Merge pull request #11929 from owncloud/fix-db-center

fixes not centered database chooser on setup page
This commit is contained in:
Jan-Christoph Borchardt 2014-11-11 17:12:17 +01:00
commit 3ecb3f16bf
1 changed files with 14 additions and 0 deletions

View File

@ -103,4 +103,18 @@ $(document).ready(function() {
t('core', 'Strong password')
]
});
// centers the database chooser if it is too wide
if($('#databaseBackend').width() > 300) {
// this somehow needs to wait 250 milliseconds
// otherwise it gets overwritten
setTimeout(function(){
// calculate negative left margin
// half of the difference of width and default bix width of 300
// add 10 to clear left side padding of button group
var leftMargin = (($('#databaseBackend').width() - 300) / 2 + 10 ) * -1;
$('#databaseBackend').css('margin-left', Math.floor(leftMargin) + 'px');
}, 250);
}
});