diff --git a/macao/assets/_custom.scss b/macao/assets/_custom.scss index 76417befd88d521ec49f1c14d130b72a32d68060..d373e0ef52c2409ae527a44780ad4ac85e8d6a4f 100644 --- a/macao/assets/_custom.scss +++ b/macao/assets/_custom.scss @@ -72,6 +72,7 @@ select.sd-dropdown.inline-dropdown, input.sd-input.inline-input { .sd-question__header { margin-top: 0; + max-width: 150px; } } @@ -113,6 +114,10 @@ a.active { } } +.sd-btn { + padding: 5px 10px !important; +} + // *********************************** // Comment on page // *********************************** diff --git a/macao/assets/quiz.js b/macao/assets/quiz.js index 4569e1170b348b5202966a034a0149e3a8426432..8718e732e92048d7f1ca1aa2df35b9521df165b8 100644 --- a/macao/assets/quiz.js +++ b/macao/assets/quiz.js @@ -116,6 +116,8 @@ $(function () { survey.applyTheme(SurveyTheme.DefaultLightPanelless); console.log("Survey theme applied", SurveyTheme.DefaultLightPanelless); + survey.showCompleteButton = false; + // Inflate the survey in the page $("#surveyContainer").Survey({ model: survey }); });