Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
#tiny_media_form {
2
    padding: 1rem;
3
}
4
 
5
#tiny_media_form #id_deletefileshdr {
6
    display: none;
7
}
8
 
9
#tiny_media_form.has-unused-files #id_deletefileshdr {
10
    display: block;
11
}
12
 
13
#tiny_media_form #id_missingfileshdr {
14
    display: none;
15
}
16
 
17
#tiny_media_form.has-missing-files #id_missingfileshdr {
18
    display: block;
19
}
20
 
21
iframe.mm_iframe {
22
    height: 650px;
23
    border: none;
24
    width: 100%;
25
}
26
 
27
.missing-files ol {
28
    padding-left: 15px;
29
}
30
 
31
.missing-files ol li {
32
    font-style: italic;
33
    font-weight: 600;
34
    color: red;
35
}
36
 
37
.tiny_image_form .tiny_image_dropzone_container {
38
    height: 200px;
39
}
40
 
41
.tiny_image_form .tiny_image_dropzone_container .dropzone-label {
42
    font-size: 1.25rem;
43
}
44
 
45
.tiny_image_form .tiny_image_loader_container {
46
    height: 200px;
47
}
48
 
49
.tiny_image_form  .tiny_image_preview_box {
50
    height: 300px;
51
    display: flex;
52
    justify-content: center;
53
    align-items: center;
54
    overflow: hidden;
55
}
56
 
57
.tiny_image_form .tiny_image_deleteicon {
58
    position: absolute;
59
    top: 5px;
60
    right: 5px;
61
    cursor: pointer;
62
    z-index: 1;
63
    width: 30px;
64
    height: 30px;
65
    background: rgba(255, 255, 255, 1);
66
    border-radius: 50%;
67
    padding: 4px 5px 5px 9px;
68
}
69
 
70
.tiny_image_form .tiny_image_deleteicon .fa-trash {
71
    color: #1d2125;
72
}
73
 
74
 
75
@media (max-width: 767px) {
76
    .tiny_image_form .tiny_image_properties_col {
77
        padding: 0;
78
    }
79
}