Merge branch 'MDL-78543' of https://github.com/skodak/moodle
[moodle.git] / mod / bigbluebuttonbn / styles.css
blob445d7cf58ad0138b83c49126e0cf7d09572a9b55
1 @charset "UTF-8";
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;
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;
24 .fa-disabled {
25 cursor: not-allowed;
26 opacity: 0.2;
29 .fa-invisible {
30 cursor: not-allowed;
31 visibility: hidden;
34 .bbb_index_form {
35 display: inline-block;
38 .bigbluebuttonbn_icon_btn i.icon {
39 margin-right: auto;
41 /* Disable gray background for text input */
42 input.form-control[readonly][name="guestpassword"],
43 input.form-control[readonly][name="guestjoinurl"] {
44 background: initial;