Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/**
2
 * Filters
3
 */
4
.mediaplugin {
5
    display: block;
6
    margin-top: 5px;
7
    margin-bottom: 5px;
8
    text-align: center;
9
}
10
 
11
.mediaplugin,
12
.mediaplugin video {
13
    /* Make videos as wide as possible without being wider than their containers */
14
    width: 100%;
15
    max-width: 100%;
16
}
17
 
18
.mediaplugin > div {
19
    margin: auto;
20
}
21
 
22
/* This is needed to display videos in an adequate size and without too much space
23
   withing the specific mod assign table views. */
24
.path-mod-assign .gradingtable .mediaplugin,
25
.path-mod-assign .submissionsummarytable .mediaplugin {
26
    width: 400px;
27
    height: auto;
28
}
29
 
30
/* Make media plugin behave properly in mod summaries and labels */
31
.mod-indent-outer .mediaplugin {
32
    display: table-cell;
33
}
34
 
35
/* Make media plugin behave properly in Modal dialog. */
36
.modal-dialog .mediaplugin {
37
    width: 100vw;
38
}