Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
//---- Database for default UI
2
//---- Module Activity
3
//----
4
//---- TODO: Add different styles and templates
5
 
6
.picturesingle {
7
    img {
8
        max-width: 100%;
9
        border-radius: $btn-border-radius;
10
    }
11
}
12
 
13
.recordauthor {
14
    margin-bottom: 1rem;
15
    padding: .35rem;
16
    border-radius: $btn-border-radius;
17
    border: 1px solid $border-color;
18
 
19
    a {
20
        display: inline-flex;
21
    }
22
}
23
 
24
#page-mod-data-view {
25
    .jsenabled .comment-link {
26
        margin-top: 2rem;
27
    }
28
}
29
 
30
.data-timeinfo {
31
    font-size: $font-size-sm;
32
    color: $body-color-light;
33
 
34
    .theme-dark & {
35
        color: $dm-body-color-light;
36
    }
37
}
38
 
39
.imagegallery-listentry .card-title {
40
    font-size: $font-size-md!important;
41
}
42
 
43
#imagegallery-list img.list_picture {
44
    border-radius: $btn-border-radius $btn-border-radius 0 0;
45
}
46
 
47
#page-mod-data-view .datapreferences {
48
    #options {
49
        label, .font-weight-bold {
50
            font-size: $font-size-xs;
51
            margin: 5px;
52
        }
53
 
54
        .custom-select,
55
        .form-control {
56
            padding: 8px 12px;
57
            height: auto;
58
            font-size: $font-size-xs;
59
        }
60
 
61
        .custom-select {
62
            padding-right: 20px;
63
        }
64
 
65
        .btn {
66
            padding: 6px 14px;
67
            font-size: $font-size-xs;
68
        }
69
 
70
        [type="checkbox"] {
71
            width: 20px;
72
            height: 20px;
73
        }
74
    }
75
}
76
 
77
.imagegallery-asearch {
78
    padding: 16px;
79
    border-radius: $btn-border-radius;
80
    background-color: $gray-100;
81
 
82
    .theme-dark & {
83
        background-color: $dm-gray-100;
84
    }
85
}