[34078525] Makes OpenID provider login box modal.

This commit is contained in:
Carlos Andrés Rocha
2012-08-30 10:47:32 -04:00
parent 902a887e79
commit 87967b9eb8

View File

@@ -1,14 +1,15 @@
<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<style>
<%block name="headextra">
<style type="text/css">
.openid-login {
display: block;
position: relative;
left: 0;
margin: 100px auto;
top: 0;
z-index: 200;
}
.openid-login input[type=submit] {
@@ -16,7 +17,17 @@
height: auto !important;
}
#lean_overlay {
display: block;
position: fixed;
left: 0px;
top: 0px;
z-index: 100;
width:100%;
height:100%;
}
</style>
</%block>
<section id="login-modal" class="modal login-modal openid-login">
<div class="inner-wrapper">
@@ -38,3 +49,4 @@
</form>
</div>
</section>
<div id="lean_overlay"></div>