';
+ // Use the no_meta parameter because this image is only in the base console.
+ echo '
';
+ echo '
';
html_print_input_text($uniq_name.'_text', $selected, '', $size, 255, false, $readonly, false, '', $class);
html_print_input_hidden($name, $selected, false, $uniq_name);
@@ -1154,15 +1154,15 @@ function html_print_extended_select_for_time(
echo '
';
echo "";
$returnString = ob_get_clean();
diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js
index c91339f0c6..89fa9c63f3 100644
--- a/pandora_console/include/javascript/pandora.js
+++ b/pandora_console/include/javascript/pandora.js
@@ -838,7 +838,7 @@ function post_process_select_events(name) {
function period_select_init(name, allow_zero) {
// Manual mode is hidden by default
$("#" + name + "_manual").css("display", "none");
- $("#" + name + "_default").css("display", "flex");
+ $("#" + name + "_default").css("display", "inline");
// If the text input is empty, we put on it 5 minutes by default
if ($("#text-" + name + "_text").val() == "") {
@@ -852,7 +852,7 @@ function period_select_init(name, allow_zero) {
}
} else if ($("#text-" + name + "_text").val() == 0 && allow_zero != true) {
$("#" + name + "_units option:last").prop("selected", false);
- $("#" + name + "_manual").css("display", "flex");
+ $("#" + name + "_manual").css("display", "inline");
$("#" + name + "_default").css("display", "none");
}
}
@@ -941,13 +941,13 @@ function selectFirst(name) {
*/
function toggleBoth(name) {
if ($("#" + name + "_default").css("display") == "none") {
- $("#" + name + "_default").css("display", "flex");
+ $("#" + name + "_default").css("display", "inline");
} else {
$("#" + name + "_default").css("display", "none");
}
if ($("#" + name + "_manual").css("display") == "none") {
- $("#" + name + "_manual").css("display", "flex");
+ $("#" + name + "_manual").css("display", "inline");
} else {
$("#" + name + "_manual").css("display", "none");
}
diff --git a/pandora_console/include/styles/wizard.css b/pandora_console/include/styles/wizard.css
index 69209ce17c..b2e9b044b1 100644
--- a/pandora_console/include/styles/wizard.css
+++ b/pandora_console/include/styles/wizard.css
@@ -70,9 +70,8 @@ ul.wizard li > textarea {
}
.wizard .discovery_inline_input {
- display: flex;
+ display: inline;
align-content: end;
- flex: 0;
align-self: flex-start;
}