@@ -383,6 +383,16 @@ a {
margin-bottom: 30px;
}
+ .app-wiz-configs {
+ .accordion-toggle {
+ display: block;
+ }
+ .panel-heading{
+ .icon{
+ width: 23px;
.app-page {
@@ -636,6 +646,11 @@ a {
a.accordion-toggle {
display: block;
+ width: 24px;
.row {
.table-row();
textarea {
@@ -19,7 +19,7 @@
<p>
{{t wizard.step3.header}}
</p>
-<div {{bind-attr class="controller.isError:has-error :form-group"}}>
+<div {{bind-attr class="controller.isError:has-error :form-group :app-wiz-configs"}}>
{{#each controller.sectionKeys}}
{{config-section
section=this
@@ -16,9 +16,10 @@
* limitations under the License.
*/
-App.CreateAppWizardStep3View = Ember.View.extend({
+App.CreateAppWizardStep3View = Ember.View.extend(App.WithPanels, {
didInsertElement: function () {
this.get('controller').loadStep();
+ this.addCarets();
});