Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.primary-navigation {
2
 
3
    @include media-breakpoint-between(xs, md) {
4
        .navbar-nav {
5
            flex-direction: column!important;
6
        }
7
    }
8
 
9
    .navigation {
10
        height: 42px;
11
        display: flex;
12
        align-items: center;
13
 
14
        @include media-breakpoint-between(xs, md) {
15
            height: max-content;
16
            width: calc(100% - 20px);
17
            margin: 20px 10px 0;
18
            display: none;
19
        }
20
 
21
        .nav-link {
22
            padding: 6px 12px;
23
            color: $topbar-btn-text;
24
            border: none;
25
            border-radius: $btn-border-radius;
26
 
27
            @include media-breakpoint-up(lmd) {
28
                margin: 0 1px;
29
            }
30
 
31
            &:before {
32
                display: none;
33
            }
34
 
35
            &.active {
36
                background-color: $topbar-btn-hover;
37
                color: $topbar-btn-text;
38
                box-shadow: rgba(9,30,66,.25) 0 1px 1px,rgba(9,30,66,.13) 0 0 1px 1px;
39
 
40
                .theme-dark & {
41
                    background-color: $dm-gray-100;
42
                    color: $dm-body-color-secondary;
43
                }
44
            }
45
 
46
            &[aria-expanded="true"],
47
            &:hover {
48
                background-color: rgba($topbar-btn-hover, .5);
49
                color: $topbar-btn-hover-text;
50
 
51
                .theme-dark & {
52
                    background-color: rgba($dm-gray-100, .6);
53
                    color: $dm-body-color-secondary;
54
                }
55
            }
56
 
57
            .theme-dark & {
58
                color: $dm-body-color;
59
            }
60
        }
61
    }
62
}
63
 
64
@include media-breakpoint-between(xs, md) {
65
    .primary-navigation {
66
        position: relative;
67
        width: 100%;
68
        margin-top: 20px;
69
        margin-bottom: 0;
70
    }
71
}
72
 
73
.editmode-switch-form .custom-control-input {
74
    z-index: 1;
75
}
76
 
77
.drawer-primary .drawercontent {
78
    padding: 0;
79
 
80
    .list-group {
81
        border-radius: 0;
82
        margin-top: -1px;
83
 
84
        .list-group-item {
85
            border-left: 0;
86
            border-right: 0;
87
        }
88
    }
89
}