fixed styling of register link to handle case where registration is closed
moved lost plink into div with login submit button
This commit is contained in:
parent
f96d8fba3a
commit
45043b77f1
2 changed files with 41 additions and 15 deletions
25
view/theme/testbubble/login.tpl
Normal file
25
view/theme/testbubble/login.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
<form action="" method="post" >
|
||||
<input type="hidden" name="auth-params" value="login" />
|
||||
<div id="login-name-wrapper">
|
||||
<label for="login-name" id="label-login-name">$namelabel</label>
|
||||
<input type="text" maxlength="60" name="openid_url" class="$classname" id="login-name" value="" />
|
||||
</div>
|
||||
<div id="login-name-end" ></div>
|
||||
<div id="login-password-wrapper">
|
||||
<label for="login-password" id="label-login-password">$passlabel</label>
|
||||
<input type="password" maxlength="60" name="password" id="login-password" value="" />
|
||||
</div>
|
||||
<div id="login-password-end"></div>
|
||||
<div id="login-submit-wrapper" >
|
||||
<input type="submit" name="submit" id="login-submit-button" value="$login" />
|
||||
<a href="lostpass" title="$lostpass" id="lost-password-link" >$lostlink</a>
|
||||
</div>
|
||||
<div id="login-submit-end"></div>
|
||||
<div id="login-extra-links">
|
||||
<div id="login-extra-filler"> </div>
|
||||
$register_html
|
||||
</div>
|
||||
<div id="login-extra-end"></div>
|
||||
</form>
|
||||
|
|
@ -145,11 +145,10 @@ section {
|
|||
}
|
||||
|
||||
#login-extra-links {
|
||||
width: 110px;
|
||||
width: 90px;
|
||||
margin-top: 20px;
|
||||
border: none;
|
||||
font-size: 0.9em;
|
||||
padding: 5px 0px 5px 5px;
|
||||
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
|
||||
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
|
||||
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
|
||||
|
@ -164,6 +163,15 @@ section {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
#login-extra-links a {
|
||||
display: block;
|
||||
margin: 10px;
|
||||
padding: 5px 0px 5px 0px;
|
||||
color: #efefef;
|
||||
text-align: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
#login-extra-links:hover {
|
||||
border: none;
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );
|
||||
|
@ -178,17 +186,10 @@ section {
|
|||
top:1px;
|
||||
}
|
||||
|
||||
#login-extra-links a {
|
||||
color: #efefef;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#login-extra-filler {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#login-extra-links a { margin-right: 20px; }
|
||||
|
||||
/* ========= */
|
||||
/* = Panel = */
|
||||
/* ========= */
|
||||
|
@ -861,7 +862,7 @@ a.active {
|
|||
position: absolute;
|
||||
overflow: hidden;
|
||||
height: 20px; width: 90px;
|
||||
top: 85px; left: 0px;
|
||||
top: 85px; left: -1px;
|
||||
-webkit-border-radius: 0px 0px 5px 5px;
|
||||
-moz-border-radius: 0px 0px 5px 5px;
|
||||
border-radius: 0px 0px 5px 5px;
|
||||
|
@ -2021,7 +2022,7 @@ margin-left: 90px;
|
|||
#contact-edit-direction-icon { position: absolute; top: 60px; left:0px;}
|
||||
#contact-edit-nav-wrapper { margin-left: 210px; }
|
||||
#contact-edit-links { float: left; margin-top: 43px; }
|
||||
#contact-drop-links {}
|
||||
#contact-drop-links {position: absolute; top: 150px; left: 348px;}
|
||||
#contact-edit-nav-wrapper .icon {
|
||||
border: 1px solid #babdb6;
|
||||
-webkit-border-radius: 3px;
|
||||
|
@ -2037,10 +2038,10 @@ margin-left: 90px;
|
|||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
#contact-edit-poll-wrapper { margin-left: 50px; }
|
||||
#contact-edit-last-update-text { margin-bottom: 15px; padding-top: 20px; font-size: 1em; }
|
||||
#contact-edit-poll-wrapper { margin-left: 50px; width: 300px;}
|
||||
#contact-edit-last-update-text { margin-bottom: 15px; padding-top: 20px; padding-left: 10px; font-size: 0.9em; max-width: 300px; }
|
||||
#contact-edit-last-updated { font-weight: bold; }
|
||||
#contact-edit-poll-text { display: inline; font-size: 1em; }
|
||||
#contact-edit-poll-text { display: inline; font-size: 0.9em; padding-left: 10px; }
|
||||
#contact-edit-end { clear: both; margin-bottom: 65px;}
|
||||
|
||||
#contact-edit-update-now {
|
||||
|
@ -2056,7 +2057,7 @@ margin-left: 90px;
|
|||
-webkit-border-radius:5px;
|
||||
border-radius:5px;
|
||||
padding: 5px 10px 5px 10px;
|
||||
margin-left: 10px;
|
||||
margin-left: 125px;
|
||||
margin-top: 10px;
|
||||
font-style: bold;
|
||||
color: #efefef;
|
||||
|
|
Loading…
Reference in a new issue