Merge pull request #547 from jcalado/master

Guest tips
This commit is contained in:
Steve Seguin 2020-11-29 13:56:33 -05:00 committed by GitHub
commit 820b06d518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View File

@ -211,6 +211,12 @@
<span data-translate="waiting-for-camera">Waiting for Camera to Load</span>
</button>
<br />
<span id="guestTips" style="display:none">
<p>For the best possible experience, make sure</p>
<span><i class="las la-plug"></i><span>Your device is powered</span></span>
<span><i class="las la-ethernet"></i><span>Your connection is hardwired instead of wifi</span></span>
<span><i class="las la-headphones"></i><span>You are using headphones / earphones</span></span>
</span>
<span id="videoMenu" class="videoMenu">
<i class="las la-video"></i><span data-translate="video-source"> Video Source </span>

View File

@ -1802,4 +1802,35 @@ a#reshare {
}
#joinroomID+button {
margin: 0px var(--regular-margin);
}
/* Tips for guests */
span#guestTips {
margin: 10 auto;
width: 450px;
display: flex;
flex-direction: column;
text-align: left;
background: #f3f3f3;
border: 1px solid #cccccc;
padding: 10px;
}
#guestTips p {
font-weight: bold;
margin-bottom: 10px;
}
#guestTips span:nth-child(1) {
color: red;
}
#guestTips > span > i {
font-size: 2.5em;
margin-right: 10px;
}
#guestTips > span > span {
line-height: 2.5em;
vertical-align: bottom;
}