Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.secondary-navigation {
2
    max-width: 100%;
3
    margin: 12px auto 0;
4
    border-bottom: 1px solid $border-color;
5
 
6
    z-index: 1240;
7
 
8
    #page-site-index & {
9
        display: flex;
10
        justify-content: center;
11
        border-bottom: 0;
12
 
13
        padding: 0 20px 0;
14
        margin: 0 auto -10px;
15
        position: sticky;
16
        top: $navbar-height + 10px;
17
 
18
        width: max-content;
19
        max-width: 100%;
20
        border-radius: 40px;
21
 
22
        background-color: $container-bg;
23
        box-shadow: $box-shadow-md;
24
    }
25
 
26
    #page-site-index.theme-dark & {
27
        background-color: $dm-gray-100;
28
    }
29
 
30
    .theme-dark & {
31
        border-color: $dm-border-color;
32
    }
33
 
34
    &+.rui-course-header {
35
        margin-top: 20px;
36
    }
37
 
38
    .navigation {
39
        .nav-tabs {
40
            .nav-link {
41
                padding: 0;
42
                margin-right: 16px;
43
                font-size: $font-size-sm;
44
                border-radius: $btn-border-radius;
45
 
46
                &.active {
47
                    background-color: transparent;
48
                    color: $link-color;
49
 
50
                    .theme-dark & {
51
                        background-color: transparent;
52
                        color: $dm-body-color-light;
53
                    }
54
                }
55
 
56
                &:hover {
57
                    background-color: transparent;
58
                    color: $gray-800;
59
 
60
                    .theme-dark & {
61
                        background-color: transparent;
62
                        color: $dm-gray-800;
63
                    }
64
 
65
                }
66
            }
67
        }
68
    }
69
}