Merge pull request #14701 from stephanfx/style/remove-inline-style
style: remove inline styles from function.js
This commit is contained in:
commit
9224aa4782
@ -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>';
|
||||
|
||||
@ -703,6 +703,10 @@ form.login label {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.max_height_400 {
|
||||
max-height: 400px;
|
||||
}
|
||||
|
||||
.pma_sliding_message{
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@ -990,6 +990,10 @@ form.login select {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.max_height_400 {
|
||||
max-height: 400px;
|
||||
}
|
||||
|
||||
.pma_sliding_message{
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user