diff --git a/manager/actions/mutate_module.dynamic.php b/manager/actions/mutate_module.dynamic.php
index c1c3e573ed..4fd4c9a0f5 100644
--- a/manager/actions/mutate_module.dynamic.php
+++ b/manager/actions/mutate_module.dynamic.php
@@ -142,7 +142,8 @@ function showParameters(ctrl) {
currentParams = JSON.parse(props);
}
- t = '
';
+ t = ' ';
+
try {
var type, options, found, info, sd;
@@ -180,7 +181,7 @@ function showParameters(ctrl) {
c = ' ';
break;
case 'menu':
- c = '';
+ c = '';
if (currentParams[key] == options) currentParams[key] = ls[0]; // use first list item as default
for (i = 0; i < ls.length; i++) {
c += '' + ll[i] + ' ';
@@ -189,7 +190,7 @@ function showParameters(ctrl) {
break;
case 'list':
if (currentParams[key] == options) currentParams[key] = ls[0]; // use first list item as default
- c = '';
+ c = '';
for (i = 0; i < ls.length; i++) {
c += '' + ll[i] + ' ';
}
@@ -199,7 +200,7 @@ function showParameters(ctrl) {
// value = typeof ar[3] !== 'undefined' ? (ar[3] + '').replace(/^\s|\s$/, "") : '';
arrValue = value.split(",");
if (currentParams[key] == options) currentParams[key] = ls[0]; // use first list item as default
- c = '';
+ c = '';
for (i = 0; i < ls.length; i++) {
if (arrValue.length) {
found = false;
@@ -233,18 +234,18 @@ function showParameters(ctrl) {
}
break;
case 'textarea':
- c = '';
+ c = '';
break;
default: // string
- c = ' ';
+ c = ' ';
break;
}
info = '';
info += desc ? '' + desc + ' ' : '';
- sd = defaultVal != undefined ? ' ' : '';
+ sd = defaultVal != undefined ? '' : '';
- t += '' + label + ' '+ info + ' ' + c + sd + ' ';
+ t += '' + label + ' '+ info + ' ' + c + ' ' + sd + ' ';
});
t += '
';
@@ -495,9 +496,8 @@ function SetUrl(url, width, height, alt) {
-
-
-
+
+
diff --git a/manager/actions/mutate_plugin.dynamic.php b/manager/actions/mutate_plugin.dynamic.php
index 68d8dded8c..f760cf693c 100644
--- a/manager/actions/mutate_plugin.dynamic.php
+++ b/manager/actions/mutate_plugin.dynamic.php
@@ -128,7 +128,7 @@ function showParameters(ctrl) {
currentParams = JSON.parse(props);
}
- t = ' ';
+ t = ' ';
try {
var type, options, found, info, sd;
@@ -166,7 +166,7 @@ function showParameters(ctrl) {
c = ' ';
break;
case 'menu':
- c = '';
+ c = '';
if (currentParams[key] == options) currentParams[key] = ls[0]; // use first list item as default
for (i = 0; i < ls.length; i++) {
c += '' + ll[i] + ' ';
@@ -175,7 +175,7 @@ function showParameters(ctrl) {
break;
case 'list':
if (currentParams[key] == options) currentParams[key] = ls[0]; // use first list item as default
- c = '';
+ c = '';
for (i = 0; i < ls.length; i++) {
c += '' + ll[i] + ' ';
}
@@ -209,7 +209,7 @@ function showParameters(ctrl) {
lv = (value + '').split(",");
c = '';
for (i = 0; i < ls.length; i++) {
- c += ' '+ll[i]+' ';
+ c += ' ';
}
break;
case 'radio':
@@ -219,18 +219,18 @@ function showParameters(ctrl) {
}
break;
case 'textarea':
- c = '';
+ c = '';
break;
default: // string
- c = ' ';
+ c = ' ';
break;
}
info = '';
info += desc ? '' + desc + ' ' : '';
- sd = defaultVal != undefined ? ' ' : '';
+ sd = defaultVal != undefined ? '' : '';
- t += '' + label + ' '+ info + ' ' + c + sd + ' ';
+ t += '' + label + ' '+ info + ' ' + c + ' ' + sd + ' ';
});
t += '
';
@@ -506,15 +506,15 @@ function contains(a, obj) {
diff --git a/manager/media/style/MODxRE2/style.css b/manager/media/style/MODxRE2/style.css
index 17cf4d2b56..0bb6d94c0b 100644
--- a/manager/media/style/MODxRE2/style.css
+++ b/manager/media/style/MODxRE2/style.css
@@ -2461,6 +2461,7 @@ input#dateto:focus.DatePicker {
/* normalize some td paddings */
+
#tabTemplate tbody td,
.sectionBody td,
.sectionBody th {
@@ -2479,19 +2480,26 @@ input#dateto:focus.DatePicker {
.sectionBody .displayparams th,
.sectionBody .displayparams td {
- padding: 2px 4px;
+ padding: 4px 4px;
}
.sectionBody .displayparams thead td,
.sectionBody .permissiongroup thead td {
border-top: none;
}
-
+#displayparams table{
+ background: #fff;
+}
+#displayparams table tbody td {
+ border-bottom: 1px dotted #d3d3d3;
+}
.sectionBody .permissiongroup input,
.sectionBody .permissiongroups input {
width: 200px;
}
-
+td#displayparams > table.displayparams {
+border: none;
+}
/* replace warning red color in tabs */
@@ -3381,4 +3389,5 @@ table.actionButtons .searchtext {
.userprofiletable {margin-bottom:-20px;}
.btn-small { padding:2px 4px !important; font-size:11px !important; }
-.relative { position:relative; }
\ No newline at end of file
+.relative { position:relative; }
+