aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/stylesheets/less/coursewizard.less
blob: a6a00d29fd669ee328b338910b03e6d1200fa3af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
option {
  &.faculty {
    font-weight: bold;
  }
  &.sub_institute {
    padding-left: 15px;
  }
}

div {
  &#wizard-participating, &#wizard-lecturers, &#wizard-deputies, &#wizard-tutors {
    margin-top: 5px;
    margin-left: 25px;
    div.description {
      font-style: italic;
    }
  }
  &#assigned {
    float:left;
    padding-right: 10px;
    width: ~"calc(50% - 10px)";
  }
  &#studyareas {
    border-left: 1px solid #666666;
    float: left;
    padding-left: 10px;
    width: ~"calc(50% - 20px)";
  }
}

/*
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;
    }
}