forked from External/greenlight
other ui changes
This commit is contained in:
parent
bc7a77ef77
commit
1eb168a780
|
@ -10,7 +10,14 @@ html, body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-background {
|
.app-background {
|
||||||
background: linear-gradient(0, white 65%, #4DC0A2 35%);
|
background: #4dc0a2;
|
||||||
|
background: -moz-linear-gradient(top, #4dc0a2 0%, #4dc0a2 35%, #ffffff 35%, #ffffff 100%);
|
||||||
|
background: -webkit-gradient(left top, left bottom, color-stop(0%, #4dc0a2), color-stop(35%, #4dc0a2), color-stop(35%, #ffffff), color-stop(100%, #ffffff));
|
||||||
|
background: -webkit-linear-gradient(top, #4dc0a2 0%, #4dc0a2 35%, #ffffff 35%, #ffffff 100%);
|
||||||
|
background: -o-linear-gradient(top, #4dc0a2 0%, #4dc0a2 35%, #ffffff 35%, #ffffff 100%);
|
||||||
|
background: -ms-linear-gradient(top, #4dc0a2 0%, #4dc0a2 35%, #ffffff 35%, #ffffff 100%);
|
||||||
|
background: linear-gradient(to bottom, #4dc0a2 0%, #4dc0a2 35%, #ffffff 35%, #ffffff 100%);
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dc0a2', endColorstr='#ffffff', GradientType=0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#alerts {
|
#alerts {
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
<table id="recordings" class="table" width="100%">
|
<table id="recordings" class="table" width="100%">
|
||||||
<thead>
|
<thead>
|
||||||
<th><%= t('date_recorded') %></th>
|
<th><%= t('date_recorded') %></th>
|
||||||
<th><%= t('presentation') %></th>
|
<th><%= t('thumbnails') %></th>
|
||||||
<th><%= t('duration') %></th>
|
<th><%= t('duration') %></th>
|
||||||
<th><%= t('views') %></th>
|
<th><%= t('views') %></th>
|
||||||
<th><%= t('actions') %></th>
|
<th><%= t('actions') %></th>
|
||||||
|
|
|
@ -47,6 +47,7 @@ en-US:
|
||||||
session_url_explanation: The session will be taking place using the following URL
|
session_url_explanation: The session will be taking place using the following URL
|
||||||
start: Start
|
start: Start
|
||||||
start_new_session: Start a new session
|
start_new_session: Start a new session
|
||||||
|
thumbnails: Thumbnails
|
||||||
url_copy_explanation: Copy this URL to invite others to the meeting
|
url_copy_explanation: Copy this URL to invite others to the meeting
|
||||||
video: Video
|
video: Video
|
||||||
views: Views
|
views: Views
|
||||||
|
|
Loading…
Reference in New Issue