Proyectos de Subversion Moodle

Rev

Ir a la última revisión | | 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
    // Override Bootstrap .close for better accessibility.
20
    .close {
21
        // Adjust the margins so the focus outline does not look clipped.
22
        margin: -0.8rem -0.8rem -0.8rem auto;
23
 
24
        // Inherit the opacity when focus is received for better focus outline contrast.
25
        &:not(:disabled):not(.disabled) {
26
            &:hover,
27
            &:focus {
28
                opacity: inherit;
29
            }
30
        }
31
    }
32
}