Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 1... Línea 1...
1
/**
1
/**
2
 * Tour step must sit above all other UI components.
2
 * Tour step must sit above all other UI components.
3
 * The backdrop is the lowest point in the tour.
3
 * The backdrop is the lowest point in the tour.
4
 * Everything else is in the container, and the target background should be at the same z-index.
-
 
5
 * ----- moodle
4
 * ----- moodle
6
 *  ---- step backdrop
5
 *  ---- step backdrop
7
 *   --- step container
6
 *   --- step container
8
 *   --- step target background
-
 
9
 */
7
 */
10
$flexitour-base-zindex: 1040;
8
$flexitour-base-zindex: 1040;
Línea 11... Línea 9...
11
 
9
 
12
// The backdrop is the backdrop used in 'modal' step display.
10
// The backdrop is the backdrop used in 'modal' step display.
Línea 16... Línea 14...
16
 
14
 
17
    // The backdrop needs to have a lower z-index than everything else in the tour, but higher than everything else in Moodle.
15
    // The backdrop needs to have a lower z-index than everything else in the tour, but higher than everything else in Moodle.
18
    z-index: #{$flexitour-base-zindex};
16
    z-index: #{$flexitour-base-zindex};
Línea 19... Línea -...
19
}
-
 
20
 
-
 
21
// The step-background is used to highlight the region targetted in the step.
17
}
22
div[data-flexitour="step-background-fader"],
-
 
23
div[data-flexitour="step-background"] {
-
 
24
    @include border-radius($border-radius-lg);
18
 
25
 
-
 
26
    // The step container, and the target background should be at the same z-index.
19
span[data-flexitour="container"] {
27
    padding: 10px;
20
    // The step container, needs to be higher than the backdrop.
Línea 28... Línea -...
28
    z-index: ($flexitour-base-zindex + 1);
-
 
29
}
-
 
30
 
-
 
31
span[data-flexitour="container"],
-
 
32
div[data-flexitour="step-background-fader"],
-
 
33
[data-flexitour="step-backdrop"] > td,
-
 
34
[data-flexitour="step-backdrop"] {
-
 
35
    // The step container, and the target background should be at the same z-index.
-
 
36
    z-index: ($flexitour-base-zindex + 2);
21
    z-index: ($flexitour-base-zindex + 1);
-
 
22
}
-
 
23
 
-
 
24
span[data-flexitour="container"] {
-
 
25
    .modal {
37
}
26
        display: initial;
38
 
27
        position: initial;
39
span[data-flexitour="container"] {
28
    }
40
    .modal-dialog {
29
    .modal-dialog {
41
        /**
30
        /**