aboutsummaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2025-08-25 17:37:55 +0200
committerElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2025-08-25 17:37:55 +0200
commitabc663bb1e70e39319341262d7eb18c58952ee6f (patch)
treed464bed4ff21e0a68587dc3406c9cc7d194dc542 /resources
parent5c8d9c3af1fe33512b7602e5be48fbf9c02e6f23 (diff)
drop ancient code that breaks tab navigation, fixes #3800
Closes #3800 Merge request studip/studip!4459
Diffstat (limited to 'resources')
-rw-r--r--resources/assets/javascripts/bootstrap/course_wizard.js6
-rw-r--r--resources/assets/stylesheets/scss/coursewizard.scss55
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;
- }
-}