Merge pull request #14701 from stephanfx/style/remove-inline-style

style: remove inline styles from function.js
This commit is contained in:
Maurício Meneghini Fauth 2018-11-01 22:00:21 -03:00 committed by GitHub
commit 9224aa4782
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 3 deletions

View File

@ -3560,13 +3560,13 @@ AJAX.registerOnload('functions.js', function () {
}
var seeMore = '';
if (list_size > maxRows) {
seeMore = '<fieldset class=\'tblFooters center\' style=\'font-weight:bold\'>' +
seeMore = '<fieldset class=\'tblFooters center font_weight_bold\'>' +
'<a href=\'#\' id=\'seeMore\'>' + PMA_messages.seeMore + '</a></fieldset>';
}
var central_columns_dialog = '<div style=\'max-height:400px\'>' +
var central_columns_dialog = '<div class=\'max_height_400\'>' +
'<fieldset>' +
search_in +
'<table id=\'col_list\' style=\'width:100%\' class=\'values\'>' + fields + '</table>' +
'<table id=\'col_list\' class=\'values all100\'>' + fields + '</table>' +
'</fieldset>' +
seeMore +
'</div>';

View File

@ -703,6 +703,10 @@ form.login label {
color: gray;
}
.max_height_400 {
max-height: 400px;
}
.pma_sliding_message{
display: inline-block;
}

View File

@ -990,6 +990,10 @@ form.login select {
color: gray;
}
.max_height_400 {
max-height: 400px;
}
.pma_sliding_message{
display: inline-block;
}