Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.modal {
2
    .modal-body {
3
        & > .loading-icon {
4
            display: block;
5
            position: relative;
6
            width: 100%;
7
            height: 100%;
8
 
9
            .icon {
10
                position: absolute;
11
                top: 50%;
12
                /*rtl:ignore*/
13
                left: 50%;
14
                transform: translate(-50%, -50%);
15
            }
16
        }
17
    }
18
}
19
 
20
// ---- URL: /admin/roles/permissions.php?contextid=3&returnurl=%2Fcourse%2Fmanagement.php%3Fcategoryid%3D1
21
.moodle-dialogue {
22
    box-shadow: $box-shadow-lg;
23
    border-radius: $btn-border-radius;
24
 
25
    @include media-breakpoint-up(md) {
26
        height: max-content!important;
27
    }
28
 
1441 ariadna 29
    .theme-dark & {
30
        box-shadow: $dm-box-shadow-lg;
31
    }
32
 
1 efrain 33
    .role_buttons {
34
        .btn {
35
            width: 100%;
36
            margin: 0.25rem 0;
37
        }
38
    }
39
}
40
 
41
 
42
// ---- URL: /grade/grading/form/rubric/edit.php?areaid=5
43
//Small modyfication
44
.confirmation-buttons {
45
    justify-content: flex-end!important;
46
 
47
    .path-mod-quiz & {
48
        margin-bottom: 0;
49
    }
50
 
51
    .btn {
52
        margin-right: 0;
53
 
54
        .path-mod-quiz & {
55
            width: 100%;
56
            margin-top: .35rem;
57
            margin-left: 0;
58
            margin-right: 0;
59
        }
60
    }
61
}