Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/**
2
 * Bootstrap overrides for RTL
3
 *
4
 * This file is only for overriding sass from upstream bootstrap, all general rtl fixes for
5
 * moodle scss should be placed immediately after the definition of the ltr rule.
6
 */
7
 
8
.dir-rtl .custom-select {
9
    background-position: 0.75rem center;
10
}
11
 
12
/*rtl:raw:
13
.dropdown-menu {
14
    right: auto;
15
    left: 0;
16
    text-align: right;
17
}
18
*/
19
 
20
.dir-rtl .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
21
    transform: translateX(-($custom-switch-width - $custom-control-indicator-size));
22
}