Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
//---- Choice
2
//---- Module Activity
3
 
4
#page-mod-choice-view {
5
    #notice {
6
        p {
7
            @extend .alert;
8
            @extend .alert-warning;
9
        }
10
    }
11
 
12
    .btn-primary + .ml-1 {
13
        padding: .75rem 1.25rem;
14
 
15
        display: inline-flex;
16
        justify-content: center;
17
        align-items: center;
18
 
19
        font-size: $font-size-sm;
20
        color: $red-800;
21
 
22
        @include media-breakpoint-up(md) {
23
            margin-left: 20px!important;
24
        }
25
 
26
        @include media-breakpoint-between(xs,sm) {
27
            margin-left: 0!important;
28
        }
29
    }
30
}
31
 
32
@include media-breakpoint-between(xs,sm) {
33
    .horizontal,
34
    .vertical,
35
    .chart-table-expand {
36
        .btn {
37
            width: 100%;
38
            margin: .25rem 0;
39
        }
40
    }
41
 
42
    .chart-table-expand a,
43
    .btn-primary + .ml-1 {
44
        width: 100%;
45
    }
46
}