mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
315f4f2bd4
* Provide a way for external participants to be invited to a meeting by giving them an url/password for external users (not registered in Moodle) * Add guest access page with username and password prompt * Add form and modify API calls to take into account guest login * Add a form modal to add guest users emails * Allow copy of link and password in both popup form and module form * The guest should be approved by default. It should be intentional to let them in without checks. * Guest access URL and password should not be copied when duplicating or backing up the activity. * The mod_bigbluebuttonbn_meeting_info web service function now returns guestjoinurl and guestpassword only for moderators. * Redirect if user already logged in Note: this will allow guest to connect to an existing and running meeting. The moderator will then be able to adjust the guest user's right. For security reasons we do not yet allow moderators to join the meeting directly (or start a meeting)
45 lines
1.0 KiB
CSS
45 lines
1.0 KiB
CSS
@charset "UTF-8";
|
|
|
|
/* bigbluebuttonbn resources */
|
|
.recording-thumbnail {
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
padding: 0 0 0 0;
|
|
transition: transform .2s; /* Animation */
|
|
width: 113px;
|
|
height: 64px;
|
|
}
|
|
|
|
.recording-thumbnail:hover {
|
|
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
|
|
transform: scale(2.0); /* (200% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
|
|
-moz-transform: scale(2.0); /* Firefox */
|
|
-webkit-transform: scale(2.0); /* Safari and Chrome */
|
|
-o-transform: scale(2.0); /* Opera */
|
|
position: relative;
|
|
display: block;
|
|
z-index: 999;
|
|
}
|
|
|
|
.fa-disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.fa-invisible {
|
|
cursor: not-allowed;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.bbb_index_form {
|
|
display: inline-block;
|
|
}
|
|
|
|
.bigbluebuttonbn_icon_btn i.icon {
|
|
margin-right: auto;
|
|
}
|
|
/* Disable gray background for text input */
|
|
input.form-control[readonly][name="guestpassword"],
|
|
input.form-control[readonly][name="guestjoinurl"] {
|
|
background: initial;
|
|
} |