Visual fixes for video
This commit is contained in:
parent
57afa4af76
commit
e6e0ad4c5c
|
|
@ -170,7 +170,9 @@
|
|||
routing();
|
||||
|
||||
var hash = context.location.hash;
|
||||
var url = '#/ftue1';
|
||||
// TODO - defaulting to home for video
|
||||
// var url = '#/ftue1';
|
||||
var url = '#/home';
|
||||
if (hash) {
|
||||
url = hash;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -376,17 +376,22 @@
|
|||
screenEvent(previousScreen, 'beforeHide', data);
|
||||
screenEvent(currentScreen, 'beforeShow', data);
|
||||
|
||||
// For now -- it seems we want it open always.
|
||||
// TODO - support user preference here? Remember how they left it?
|
||||
sidebarVisible = true;
|
||||
/*
|
||||
var openSidebarScreens = [
|
||||
'home', 'session', 'createSession',
|
||||
'findSession', 'searchResults'
|
||||
];
|
||||
sidebarVisible = false;
|
||||
$.each(openSidebarScreens, function() {
|
||||
logger.debug("comparing " + this + " to " + currentScreen);
|
||||
if (this === currentScreen) {
|
||||
sidebarVisible = true;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
*/
|
||||
layout();
|
||||
|
||||
screenEvent(previousScreen, 'afterHide', data);
|
||||
|
|
|
|||
|
|
@ -319,3 +319,9 @@ input[type="text"] {
|
|||
.right {
|
||||
float:right;
|
||||
}
|
||||
|
||||
|
||||
/* TODO - we need a separate stylesheet(s) for signin/signup screens */
|
||||
/* Following is a style adjustment for the sign-in table spacing */
|
||||
#sign-in td { padding: 4px; }
|
||||
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ table.vu td {
|
|||
|
||||
|
||||
.session-add {
|
||||
margin-top:6px;
|
||||
margin-top:9px;
|
||||
margin-bottom:8px;
|
||||
font-size:16px;
|
||||
}
|
||||
|
|
@ -181,7 +181,7 @@ table.vu td {
|
|||
}
|
||||
|
||||
.session-add a img {
|
||||
margin-top: 2px;
|
||||
vertical-align:bottom;
|
||||
}
|
||||
|
||||
.session-recording-name-wrapper {
|
||||
|
|
@ -199,6 +199,7 @@ table.vu td {
|
|||
}
|
||||
|
||||
.session-tracks-scroller {
|
||||
position:relative;
|
||||
overflow-x:auto;
|
||||
overflow-y:hidden;
|
||||
width:100%;
|
||||
|
|
@ -524,12 +525,13 @@ table.vu td {
|
|||
}
|
||||
|
||||
.recording {
|
||||
bottom: 0px;
|
||||
margin-top:15px;
|
||||
padding:3px;
|
||||
height:19px;
|
||||
width:95%;
|
||||
background-color:#242323;
|
||||
position:relative;
|
||||
position:absolute;
|
||||
text-align:center;
|
||||
font-size:13px;
|
||||
}
|
||||
|
|
@ -539,6 +541,10 @@ table.vu td {
|
|||
text-decoration:none;
|
||||
}
|
||||
|
||||
.recording a img {
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
.recording-controls {
|
||||
margin-top:15px;
|
||||
padding:3px 5px 3px 10px;
|
||||
|
|
|
|||
|
|
@ -103,18 +103,22 @@
|
|||
<!-- recordings -->
|
||||
<div class="session-recordings">
|
||||
<h2>recordings</h2>
|
||||
<div class="session-add">
|
||||
(No recording loaded)
|
||||
</div>
|
||||
|
||||
<!-- recording name and close button -->
|
||||
<!--
|
||||
<div class="session-recording-name-wrapper">
|
||||
<div class="session-recording-name left">(No recording loaded)</div>
|
||||
<!--
|
||||
<div class="session-add right">
|
||||
<a href="#">
|
||||
<%= image_tag "content/icon_close.png", {:width => 18, :height => 20, :align => "texttop"} %> Close
|
||||
</a>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
-->
|
||||
|
||||
<!-- recording tracks scroller -->
|
||||
<div class="session-tracks-scroller">
|
||||
</div> <!-- end session-tracks-scroller -->
|
||||
|
|
|
|||
|
|
@ -14,12 +14,13 @@
|
|||
<!-- sign in left column -->
|
||||
<div class="ftue-left"><br />
|
||||
|
||||
<span class="white"><strong>Already a member?</strong></span> Enter your email address and password:
|
||||
<span class="white"><strong>Already a member?</strong></span><br/>
|
||||
Enter your email address and password:
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<%= form_for(:session, url: sessions_path) do |f| %>
|
||||
<table cellpadding="0" cellspacing="10">
|
||||
<table id="sign-in" cellpadding="3" cellspacing="10">
|
||||
<tr>
|
||||
<td><%= f.label :email %></td>
|
||||
<td><%= f.label :password %></td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue