Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
@charset "UTF-8";
2
 
3
/* bigbluebuttonbn resources */
4
.recording-thumbnail {
5
    border: 1px solid #ddd;
6
    border-radius: 4px;
7
    padding: 0 0 0 0;
8
    transition: transform .2s; /* Animation */
9
    width: 113px;
10
    height: 64px;
11
}
12
 
13
.recording-thumbnail:hover {
14
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
15
    transform: scale(2.0); /* (200% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
16
    -moz-transform: scale(2.0); /* Firefox */
17
    -webkit-transform: scale(2.0); /* Safari and Chrome */
18
    -o-transform: scale(2.0); /* Opera */
19
    position: relative;
20
    display: block;
21
    z-index: 999;
22
}
23
 
24
.fa-disabled {
25
    cursor: not-allowed;
26
    opacity: 0.2;
27
}
28
 
29
.fa-invisible {
30
    cursor: not-allowed;
31
    visibility: hidden;
32
}
33
 
34
.bbb_index_form {
35
    display: inline-block;
36
}
37
 
38
.bigbluebuttonbn_icon_btn i.icon {
39
    margin-right: auto;
40
}
41
/* Disable gray background for text input */
42
input.form-control[readonly][name="guestpassword"],
43
input.form-control[readonly][name="guestjoinurl"] {
44
    background: initial;
45
}