Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
//---- Lesson
2
//---- Module Activity
3
 
4
.addlinks {
5
    margin-top: 2rem;
6
    border-top: 1px solid $border-color;
7
    text-align: center;
8
 
9
    &:nth-of-type(1) {
10
        margin-top: 0;
11
        border-top: none;
12
    }
13
}
14
 
15
.branchbuttoncontainer {
16
    .singlebutton {
17
        margin: .25rem 0;
18
    }
19
}
20
 
21
.text_to_html + .singlebutton {
22
    margin-top: 10px;
23
}
24
 
25
@include media-breakpoint-between(xs,sm) {
26
    .branchbuttoncontainer {
27
        .singlebutton,
28
        .btn {
29
            width: 100%;
30
        }
31
    }
32
}
33
 
34
.path-mod-lesson .progress_bar {
35
    font-size: $font-size-sm;
36
 
37
    .progress_bar {
38
        margin-top: 10px;
39
    }
40
 
41
}
42
 
43
.path-mod-lesson {
44
    .wrapper-fw + .wrapper-fw {
45
        margin-top: 10px;
46
    }
47
}
48
 
49
.menuwrapper {
50
    ul {
51
        margin: 0;
52
        padding: 0;
53
        list-style: none;
54
 
55
        li {
56
            margin-bottom: 3px;
57
            font-size: $font-size-xs;
58
        }
59
 
60
        .selected {
61
            padding: 3px 6px;
62
            border-radius: $btn-border-radius;
63
 
64
            background-color: $primary-color-100;
65
            color: $primary-color-600;
66
        }
67
 
68
        .notselected a {
69
            display: block;
70
            padding: 3px 6px;
71
            border-radius: $btn-border-radius;
72
 
73
            background-color: $gray-100;
74
            color: $body-color;
75
 
76
            &:hover {
77
                background-color: $primary-color-100;
78
                color: $primary-color-600;
79
            }
80
 
81
            .theme-dark & {
82
                background-color: $dm-gray-100;
83
                color: $dm-body-color;
84
            }
85
        }
86
    }
87
}