forked from External/greenlight
fix footer and update links
This commit is contained in:
parent
c802e4806a
commit
0b9fdb371e
|
@ -8,7 +8,7 @@ Greenlight is a simple front-end interface for your BigBlueButton server. At it'
|
|||
* Invite others to your room using a simple URL.
|
||||
* View recordings and share them with others.
|
||||
|
||||
Furthermore, Greenlight is completely configurable. This means you can turn on/off features to make Greenlight fit your specific use case. For more information on Greenlight and it's features, see our [documentation](http://docs.bigbluebutton.org/install/green-light.html).
|
||||
Furthermore, Greenlight is completely configurable. This means you can turn on/off features to make Greenlight fit your specific use case. For more information on Greenlight and it's features, see our [documentation](http://docs.bigbluebutton.org/install/greenlight.html).
|
||||
|
||||
For a overview of how GreenLight works, checkout our [Introduction to Greenlight Video](https://youtu.be/yGX3JCv7OVM).
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
$background-color: #F5F7FB;
|
||||
$error-background-color: #EFE6E6;
|
||||
|
||||
$footer-height: 80px;
|
||||
$footer-height: 65px;
|
||||
|
||||
html, body {
|
||||
width: 100%;
|
||||
|
@ -45,9 +45,11 @@ a {
|
|||
}
|
||||
|
||||
.footer {
|
||||
position: fixed;
|
||||
height: $footer-height;
|
||||
width: 100%;
|
||||
position: abolute;
|
||||
bottom: 0px;
|
||||
bottom: 0;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.table-responsive {
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
<i class="fas fa-exclamation-triangle"></i>
|
||||
<p class="d-inline">This deployment is using a pre-configured testing server,
|
||||
you should replace this with your own.
|
||||
For details, see the <%= link_to "documentation", "http://docs.bigbluebutton.org/install/green-light.html#installing-greenlight", target: "_blank" %>.
|
||||
For details, see the <%= link_to "documentation", "http://docs.bigbluebutton.org/install/greenlight.html#installing-greenlight", target: "_blank" %>.
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<div class="footer">
|
||||
<footer class="footer page-footer">
|
||||
<h5 class="text-center">Powered by <a target="_blank" href="http://bigbluebutton.org/">BigBlueButton</a>.</h5>
|
||||
</div>
|
||||
</footer>
|
||||
|
|
10
sample.env
10
sample.env
|
@ -20,7 +20,7 @@ BIGBLUEBUTTON_SECRET=
|
|||
#
|
||||
# For in-depth steps on setting up a Google Login Provider, see:
|
||||
#
|
||||
# http://docs.bigbluebutton.org/install/green-light.html#google-oauth
|
||||
# http://docs.bigbluebutton.org/install/greenlight.html#google-oauth2
|
||||
#
|
||||
# The GOOGLE_OAUTH2_HD variable is used to limit sign-in to a particular Google Apps hosted
|
||||
# domain. This can be a string such as, 'domain.com'. If left blank, GreenLight will allow
|
||||
|
@ -33,14 +33,16 @@ GOOGLE_OAUTH2_HD=
|
|||
#
|
||||
# For in-depth steps on setting up a Twitter Login Provider, see:
|
||||
#
|
||||
# http://docs.bigbluebutton.org/install/green-light.html#twitter-oauth
|
||||
# http://docs.bigbluebutton.org/install/greenlight.html#twitter-oauth2
|
||||
#
|
||||
TWITTER_ID=
|
||||
TWITTER_SECRET=
|
||||
|
||||
# Set this to true if you want GreenLight to support user signup and login without
|
||||
# Omniauth. This will allow users to create an account at www.hostname.com/signup
|
||||
# and use that account to fully interact with GreenLight.
|
||||
# Omniauth. For more information, see:
|
||||
#
|
||||
# http://docs.bigbluebutton.org/install/greenlight.html#in-application-greenlight
|
||||
#
|
||||
ALLOW_GREENLIGHT_ACCOUNTS=true
|
||||
|
||||
# Prefix for the applications root URL.
|
||||
|
|
Loading…
Reference in New Issue