diff --git a/src/sunstone/public/app/app.js b/src/sunstone/public/app/app.js index 4884b86c6a..e484c63960 100644 --- a/src/sunstone/public/app/app.js +++ b/src/sunstone/public/app/app.js @@ -85,8 +85,14 @@ define(function(require) { $(document).on("click", ".accordion_advanced_toggle", function() { if ($(this).hasClass("active")) { $(this).removeClass("active"); + if ($(this).hasClass("importation")) { + $(this).css("color", "").css("font-weight", "normal"); + } } else { $(this).addClass("active"); + if ($(this).hasClass("importation")) { + $(this).css("color", "#555").css("font-weight", "bold"); + } } $(".content", $(this).closest(".accordion_advanced")).toggle(); diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate.js index dd35202195..ec20d0cb69 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate.js @@ -486,7 +486,8 @@ define(function(require) { $(".nicsContext" + template_json.VMTEMPLATE.ID, context), { "forceIPv4": true, "securityGroups": Config.isFeatureEnabled("secgroups"), - "name": " " + "name": " ", + "fieldset": false }); VMGroupSection.insert(template_json, diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs b/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs index 6bb370d05e..05d129b82d 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs @@ -48,7 +48,7 @@