diff options
| -rw-r--r-- | resources/assets/javascripts/bootstrap/course_wizard.js | 6 | ||||
| -rw-r--r-- | resources/assets/stylesheets/scss/coursewizard.scss | 55 |
2 files changed, 0 insertions, 61 deletions
diff --git a/resources/assets/javascripts/bootstrap/course_wizard.js b/resources/assets/javascripts/bootstrap/course_wizard.js index 6ca291b..b96ebe7 100644 --- a/resources/assets/javascripts/bootstrap/course_wizard.js +++ b/resources/assets/javascripts/bootstrap/course_wizard.js @@ -5,12 +5,6 @@ STUDIP.domReady(function() { }); STUDIP.ready(function() { - $('.course-wizard-step-0 *:input:not(input[type=submit])').each(function () { - $(this).attr( - 'tabindex', - $(this).closest('section,footer').css('order') - ); - }); $('#wizard-coursetype').on('change', function() { let semtype = $(this).val(); let mandatory_types = $('#wizard-maxmember').parent('section').data('mandatory'); diff --git a/resources/assets/stylesheets/scss/coursewizard.scss b/resources/assets/stylesheets/scss/coursewizard.scss index 740b98f..864e2b7 100644 --- a/resources/assets/stylesheets/scss/coursewizard.scss +++ b/resources/assets/stylesheets/scss/coursewizard.scss @@ -62,58 +62,3 @@ div { } } - -/* -change order for AdvancedBasicDataWizardStep -so we do not have to copy the basicdata/index.php -*/ -form.course-wizard-step-0 { - display: flex; - flex-direction: column; - - > * { - order: 1; - } - section:nth-of-type(2) { - order: 2; - } - section:nth-of-type(3) { - order: 3; - } - section:nth-of-type(4) { - order: 5; - } - section:nth-of-type(5) { - order: 9; - } - section:nth-of-type(6) { - order: 10; - } - section:nth-of-type(7) { - order: 11; - } - section:nth-of-type(8) { - order: 12; - } - section:nth-of-type(9) { - order: 13; - } - section:nth-of-type(10) { - order: 11 - } - section:nth-of-type(11) { - order: 4; - } - section:nth-of-type(12) { - order: 6; - } - section:nth-of-type(13) { - order: 7; - } - section:nth-of-type(14) { - order: 8; - } - footer { - order: 100; - } -} |
