diff --git a/js/functions.js b/js/functions.js
index 10fc9c2ead..e1009bd875 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -3517,9 +3517,9 @@ AJAX.registerOnload('functions.js', function () {
var list_size = central_column_list[db + '_' + table].length;
var min = (list_size <= maxRows) ? list_size : maxRows;
for (i = 0; i < min; i++) {
- fields += '
' +
+ fields += '' +
escapeHtml(central_column_list[db + '_' + table][i].col_name) +
- ' ' + central_column_list[db + '_' + table][i].col_type;
+ ' ' + central_column_list[db + '_' + table][i].col_type;
if (central_column_list[db + '_' + table][i].col_attribute !== '') {
fields += '(' + escapeHtml(central_column_list[db + '_' + table][i].col_attribute) + ') ';
@@ -3530,7 +3530,7 @@ AJAX.registerOnload('functions.js', function () {
fields += escapeHtml(central_column_list[db + '_' + table][i].col_extra) + '' +
' | ';
if (pick) {
- fields += ' | ';
}
fields += ' ';
@@ -3579,9 +3579,9 @@ AJAX.registerOnload('functions.js', function () {
fields = '';
min = (list_size <= maxRows + result_pointer) ? list_size : maxRows + result_pointer;
for (i = result_pointer; i < min; i++) {
- fields += '' +
+ fields += '' +
central_column_list[db + '_' + table][i].col_name +
- ' ' +
+ ' ' +
central_column_list[db + '_' + table][i].col_type;
if (central_column_list[db + '_' + table][i].col_attribute !== '') {
@@ -3593,7 +3593,7 @@ AJAX.registerOnload('functions.js', function () {
fields += central_column_list[db + '_' + table][i].col_extra + '' +
' | ';
if (pick) {
- fields += ' | ';
}
fields += ' ';
@@ -4249,7 +4249,7 @@ function PMA_slidingMessage (msg, $obj) {
if ($('#PMA_slidingMessage').length === 0) {
$('#page_content').prepend(
''
+ 'class="pma_sliding_message">'
);
}
$obj = $('#PMA_slidingMessage');
diff --git a/js/messages.php b/js/messages.php
index 820deecce2..c12aeb2cbe 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -697,10 +697,10 @@ $js_messages['phpErrorsFound'] = ' '
. ' '
. ''
+ . '" class="floatright message_errors_found">'
. ''
+ . '" class="floatright message_errors_found">'
. ' ';
$js_messages['phpErrorsBeingSubmitted'] = ' '
diff --git a/js/rte.js b/js/rte.js
index b8f1b0b7d3..5f89835d54 100644
--- a/js/rte.js
+++ b/js/rte.js
@@ -169,7 +169,7 @@ RTE.COMMON = {
/**
* Display the dialog to the user
*/
- data.message = ' ';
+ data.message = ' ';
var $ajaxDialog = $(' ' + data.message + ' ').dialog({
width: 500,
buttons: button_options,
diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php
index 7c2c1fbfe0..146e3fc632 100644
--- a/themes/original/css/common.css.php
+++ b/themes/original/css/common.css.php
@@ -636,6 +636,22 @@ form.login label {
max-width:50%
}
+.message_errors_found{
+ margin-top: 20px;
+}
+
+.font_weight_bold{
+ font-weight: bold;
+}
+
+.color_gray{
+ color: gray;
+}
+
+.pma_sliding_message{
+ display: inline-block;
+}
+
/******************************************************************************/
/* specific elements */
diff --git a/themes/pmahomme/css/common.css.php b/themes/pmahomme/css/common.css.php
index 9630165c06..6ad48a7aa3 100644
--- a/themes/pmahomme/css/common.css.php
+++ b/themes/pmahomme/css/common.css.php
@@ -917,6 +917,22 @@ form.login select {
max-width:50%
}
+.message_errors_found{
+ margin-top: 20px;
+}
+
+.font_weight_bold{
+ font-weight: bold;
+}
+
+.color_gray{
+ color: gray;
+}
+
+.pma_sliding_message{
+ display: inline-block;
+}
+
/******************************************************************************/
/* specific elements */
| |