Merge branch 'master' into webhooks
commit
af8a661eb7
|
@ -22,7 +22,7 @@
|
|||
{% block base_js %}
|
||||
<script type="text/javascript" src="{{ jquery_home }}"></script>
|
||||
{% endblock %}
|
||||
<script type="text/javascript" src="/static/js/hijax.js"></script>
|
||||
<script type="text/javascript" src="/static/js/hijax.js?v=1"></script>
|
||||
{% block extra_js %}
|
||||
{% endblock %}
|
||||
<script type="text/javascript" src="/static/js/watermark_init.js"></script>
|
||||
|
@ -125,12 +125,14 @@
|
|||
{% else %}
|
||||
<div class="js-topmenu">
|
||||
<ul class="menu">
|
||||
<li><a href="{% url auth_login %}?next={% firstof request.path '/' %}"><span>Sign In</span></a></li>
|
||||
<li><a href="{% url auth_login %}?next={% firstof request.path '/' %}" class="hijax"><span>Sign In</span></a></li>
|
||||
{% if not suppress_search_box %}
|
||||
{% comment %}
|
||||
don't display this on landing page where it's superseded by big signup box in splash area
|
||||
{% endcomment %}
|
||||
<li id="expander" class="last"><a href="{% url registration_register %}"><span>Sign Up</span></a></li>
|
||||
{% ifnotequal request.get_full_path "/accounts/register/" %}
|
||||
{% comment %}
|
||||
don't display this on landing page where it's superseded by big signup box in splash area
|
||||
{% endcomment %}
|
||||
<li id="expander" class="last"><a href="{% url registration_register %}"><span>Sign Up</span></a></li>
|
||||
{% endifnotequal %}
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -143,7 +143,7 @@
|
|||
<input type="submit" class="signup" value="sign up" />
|
||||
</div>
|
||||
<div class="google_signup">
|
||||
<a href="/socialauth/login/google?next={{request.build_absolute_uri}}"><img src="{{ STATIC_URL }}images/auth/google_32_noborder.png" alt="google" /></a><div>Or: <a href="/socialauth/login/google?next={{request.build_absolute_uri}}">Sign Up With Google</a></div>
|
||||
<a href="/socialauth/login/google?next={{request.build_absolute_uri}}"><img src="{{ STATIC_URL }}images/auth/google_32_noborder.png" alt="google" /></a><div><a href="/socialauth/login/google?next={{request.build_absolute_uri}}">Sign Up With Google</a></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -27,6 +27,10 @@
|
|||
|
||||
<a id="latest"></a><h2>Latest Press</h2>
|
||||
<div class="pressarticles">
|
||||
<div>
|
||||
<a href="http://www.circulatingideas.com/2012/11/unglueit.html">Unglue.it: Steve speaks with Eric Hellman and Andromeda Yelton from Unglue.it</a><br />
|
||||
Circulating Ideas: the librarian interview podcast - November 16, 2012<br />
|
||||
</div>
|
||||
<div>
|
||||
<a href="http://www.insidehighered.com/blogs/library-babel-fish/can-you-spare-little-change-open-access-local-level">Can You Spare a Little Change? Open Access on the Local Level</a><br />
|
||||
Library Babel Fish (Inside Higher Ed) - October 23, 2012<br />
|
||||
|
@ -35,10 +39,6 @@
|
|||
<a href="http://goodereader.com/blog/electronic-readers/unglue-it-back-in-action-after-finding-new-payments-provider/">Unglue.it back in action after finding new payments provider</a><br />
|
||||
Good EReader - October 16, 2012<br />
|
||||
</div>
|
||||
<div>
|
||||
<a href="http://www.bookbusinessmag.com/article/unstuck-chatting-eric-hellman-book-rights-crowd-sourcing-site-unglueit-creative-commons-passionate-authors-life-after-amazon/1">Unstuck: Chatting with Eric Hellman of book rights crowd-sourcing site Unglue.it about ebooks, the creative commons, passionate authors and life after Amazon</a><br />
|
||||
Book Business - October 3, 2012<br />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a id="overview"></a><h2>Overview</h2>
|
||||
|
@ -199,6 +199,10 @@ Creative Commons offers a variety of other licenses, many of them with even less
|
|||
|
||||
<a id="blogs"></a><h2>Blog Coverage (Highlights)</h2>
|
||||
<div class="pressarticles">
|
||||
<div>
|
||||
<a href="http://www.circulatingideas.com/2012/11/unglueit.html">Unglue.it: Steve speaks with Eric Hellman and Andromeda Yelton from Unglue.it</a><br />
|
||||
Circulating Ideas: the librarian interview podcast - November 16, 2012<br />
|
||||
</div>
|
||||
<div>
|
||||
<a href="http://www.insidehighered.com/blogs/library-babel-fish/can-you-spare-little-change-open-access-local-level">Can You Spare a Little Change? Open Access on the Local Level</a><br />
|
||||
Library Babel Fish (Inside Higher Ed) - October 23, 2012<br />
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% extends "registration/registration_base.html" %}
|
||||
{% block title %}login{% endblock %}
|
||||
{% block doccontent %}
|
||||
|
||||
<div id="lightbox_content">
|
||||
{% if form.errors %}
|
||||
<p class="errorlist">Your username and password didn't match. Please try again.</p>
|
||||
Make sure the username box has your <b>username, not your email</b> -- some browsers automatically fill in your email. We're working on fixing this bug.
|
||||
|
@ -25,4 +25,5 @@ Make sure the username box has your <b>username, not your email</b> -- some brow
|
|||
You are already logged in as <a href="{% url supporter supporter_username=user.username %}">{{ user.username }}</a>.
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
<!-- login_form.html -->
|
||||
<form method="post" action="{% url django.contrib.auth.views.login %}">{% csrf_token %}
|
||||
<form method="post" action="{% url django.contrib.auth.views.login %}" class="login">{% csrf_token %}
|
||||
{{ form.username.label_tag }}
|
||||
{{ form.username }}
|
||||
{{ form.password.label_tag }}
|
||||
{{ form.password }}
|
||||
<br />
|
||||
<input type="submit" value="Sign In" />
|
||||
|
||||
<input type="hidden" name="next" value="{% if next %}{{ next }}{% else %}/{% endif %}" />
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -47,22 +47,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
@ -154,22 +138,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
@ -260,7 +228,7 @@
|
|||
display: inherit;
|
||||
}
|
||||
body {
|
||||
line-height: 17px;
|
||||
line-height: 19.5px;
|
||||
}
|
||||
/* Learn More area (not already styles by learnmore.less) */
|
||||
.user-block {
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -47,22 +47,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
@ -154,22 +138,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
@ -392,6 +360,38 @@
|
|||
clear: both;
|
||||
padding: 10px 0 5px 16px;
|
||||
}
|
||||
.google_signup {
|
||||
padding: 14px 0;
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
.google_signup img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.google_signup div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
.google_signup img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.js-rightcol-padd {
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -540,36 +540,6 @@ h3.module-title {
|
|||
font-size: 19px;
|
||||
font-weight: normal;
|
||||
}
|
||||
.google_signup {
|
||||
padding: 14px 0;
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.google_signup div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.landingheader {
|
||||
border-bottom: solid 5px #6994a3;
|
||||
float: left;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
@ -99,11 +85,14 @@
|
|||
margin: 0 auto;
|
||||
padding: 10px 0;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
line-height: 19.5px;
|
||||
}
|
||||
#registration input[type="submit"] {
|
||||
margin: 0 auto;
|
||||
padding: 5px 0;
|
||||
#registration .helptext {
|
||||
font-style: italic;
|
||||
}
|
||||
#registration .helptext:before {
|
||||
white-space: pre;
|
||||
content: "\A";
|
||||
}
|
||||
#login {
|
||||
border: solid 3px #d6dde0;
|
||||
|
@ -115,58 +104,24 @@
|
|||
padding: 10px;
|
||||
width: 50%;
|
||||
}
|
||||
#login form label {
|
||||
display: block;
|
||||
}
|
||||
#login form input {
|
||||
width: 90%;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #d6dde0;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
#login form input[type=submit] {
|
||||
text-decoration: capitalize;
|
||||
width: auto;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
background: #8dc63f;
|
||||
-moz-border-radius: 32px;
|
||||
-webkit-border-radius: 32px;
|
||||
border-radius: 32px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
padding: 0 15px;
|
||||
border: none;
|
||||
margin: 5px 0;
|
||||
}
|
||||
#login form input:focus {
|
||||
border: solid 1px #8dc63f;
|
||||
}
|
||||
#login form span.helptext {
|
||||
display: block;
|
||||
margin-top: -11px;
|
||||
font-style: italic;
|
||||
font-size: 13px;
|
||||
}
|
||||
#login .google_signup {
|
||||
padding: 14px 0;
|
||||
}
|
||||
#login .google_signup div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
#login .google_signup img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
}
|
||||
#login input[type="text"],
|
||||
#login input[type="password"] {
|
||||
width: 90%;
|
||||
}
|
||||
.actionbutton {
|
||||
width: auto;
|
||||
|
@ -237,3 +192,7 @@
|
|||
margin-top: 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
label:before {
|
||||
content: "\A";
|
||||
white-space: pre;
|
||||
}
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -48,22 +48,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
@ -155,22 +139,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
@ -334,14 +302,12 @@ a.success:hover {
|
|||
width: 90%;
|
||||
border-color: #8dc63f;
|
||||
margin: 10px auto 0 auto;
|
||||
font-size: 120%;
|
||||
font-size: 15px;
|
||||
line-height: 22.5px;
|
||||
}
|
||||
.launch_top a {
|
||||
color: #8dc63f;
|
||||
}
|
||||
.launch_top a {
|
||||
font-size: 110%;
|
||||
}
|
||||
.launch_top.pale {
|
||||
border-color: #d6dde0;
|
||||
font-size: 13px;
|
||||
|
@ -774,6 +740,127 @@ ul.menu {
|
|||
position: absolute;
|
||||
line-height: normal;
|
||||
}
|
||||
form.login label,
|
||||
#login form label {
|
||||
display: block;
|
||||
line-height: 18px;
|
||||
}
|
||||
form.login input,
|
||||
#login form input {
|
||||
width: 90%;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #d6dde0;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
form.login input[type=submit],
|
||||
#login form input[type=submit] {
|
||||
text-decoration: capitalize;
|
||||
width: auto;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
background: #8dc63f;
|
||||
-moz-border-radius: 32px;
|
||||
-webkit-border-radius: 32px;
|
||||
border-radius: 32px;
|
||||
-moz-border-radius: 32px;
|
||||
-webkit-border-radius: 32px;
|
||||
border-radius: 32px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
padding: 0 15px;
|
||||
border: none;
|
||||
margin: 5px 0;
|
||||
width: auto;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
background: #8dc63f;
|
||||
-moz-border-radius: 32px;
|
||||
-webkit-border-radius: 32px;
|
||||
border-radius: 32px;
|
||||
-moz-border-radius: 32px;
|
||||
-webkit-border-radius: 32px;
|
||||
border-radius: 32px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
padding: 0 15px;
|
||||
border: none;
|
||||
margin: 5px 0;
|
||||
}
|
||||
form.login input:focus,
|
||||
#login form input:focus {
|
||||
border: solid 1px #8dc63f;
|
||||
}
|
||||
form.login input[type="text"],
|
||||
#login form input[type="text"],
|
||||
form.login input[type="password"],
|
||||
#login form input[type="password"] {
|
||||
height: 22.75px;
|
||||
line-height: 22.75px;
|
||||
height: 22.75px;
|
||||
line-height: 22.75px;
|
||||
margin-bottom: 13px;
|
||||
border-width: 2px;
|
||||
}
|
||||
form.login input[type="submit"],
|
||||
#login form input[type="submit"] {
|
||||
font-size: 15px;
|
||||
}
|
||||
form.login span.helptext,
|
||||
#login form span.helptext {
|
||||
display: block;
|
||||
margin-top: -11px;
|
||||
font-style: italic;
|
||||
font-size: 13px;
|
||||
}
|
||||
#lightbox_content .google_signup {
|
||||
padding: 14px 0;
|
||||
padding: 14px 0;
|
||||
}
|
||||
#lightbox_content .google_signup div {
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
#lightbox_content .google_signup img {
|
||||
float: left;
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
}
|
||||
#lightbox_content .google_signup div {
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
#lightbox_content .google_signup img {
|
||||
float: left;
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
}
|
||||
.js-search {
|
||||
float: left;
|
||||
padding-top: 25px;
|
||||
|
@ -1045,12 +1132,9 @@ a.nounderline {
|
|||
border: solid 5px #d6dde0;
|
||||
background: white;
|
||||
z-index: 500;
|
||||
position: absolute;
|
||||
left: 12.5%;
|
||||
width: 75%;
|
||||
top: 25%;
|
||||
margin-left: 0;
|
||||
padding: 9px;
|
||||
max-width: 90%;
|
||||
}
|
||||
#about_expandable .collapser_x {
|
||||
margin-top: -27px;
|
||||
|
@ -1082,6 +1166,11 @@ a.nounderline {
|
|||
margin-top: 0;
|
||||
clear: none;
|
||||
}
|
||||
#lightbox_content h2 + form,
|
||||
#lightbox_content h3 + form,
|
||||
#lightbox_content h4 + form {
|
||||
margin-top: 15px;
|
||||
}
|
||||
.nonlightbox .about_page {
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -41,20 +41,6 @@
|
|||
padding: 5px;
|
||||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
.google_signup_div {
|
||||
padding: 14px 0;
|
||||
}
|
||||
.google_signup_div div {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
float: left;
|
||||
padding-left: 5px;
|
||||
}
|
||||
.google_signup_div img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
.actionbuttons {
|
||||
width: auto;
|
||||
height: 36px;
|
||||
|
|
|
@ -6,7 +6,13 @@ var $j = jQuery.noConflict();
|
|||
$j(document).ready(function() {
|
||||
$j("a.hijax").click(function(event) {
|
||||
event.preventDefault();
|
||||
$j("#lightbox").load( $j(this).attr("href") + " #lightbox_content");
|
||||
$j("#lightbox").load($j(this).attr("href") + " #lightbox_content", function() {
|
||||
// centering divs of dynamic width: shockingly hard. make sure lightbox is centered on load.
|
||||
var hijaxWidth = $j('#about_expandable').width() + 28;
|
||||
var windowWidth = $j(document).width();
|
||||
var marginWidth = (windowWidth - hijaxWidth)/2;
|
||||
$j('#about_expandable').css({'margin-left': marginWidth});
|
||||
});
|
||||
|
||||
if ($j(this).attr("href").substr(-9,8) == "download") {
|
||||
jQuery.getScript('https://platform.readmill.com/send.js');
|
||||
|
@ -22,6 +28,7 @@ $j(document).ready(function() {
|
|||
$j('#js-header a').css({"cursor": "default"});
|
||||
$j('#js-page-wrap').css({"opacity": "0.07"});
|
||||
$j('#footer').css({"opacity": "0.07"});
|
||||
$j('#about_expandable').css({'display':'inline-block', 'margin-top': '10%'});
|
||||
$j('#about_expandable').fadeTo("slow", 1);
|
||||
|
||||
// if we're on a supporter page, personalize our about box
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
@import "learnmore.less";
|
||||
|
||||
body {
|
||||
line-height: 17px;
|
||||
line-height: @font-size-default*1.5;
|
||||
}
|
||||
|
||||
/* Learn More area (not already styles by learnmore.less) */
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
|
||||
#lightbox_content h2, #lightbox_content h3, #lightbox_content h4 {
|
||||
margin-top: 15px;
|
||||
|
||||
}
|
||||
|
||||
#lightbox_content h2 a {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
width:968px;
|
||||
background:#fff url("@{image-base}landingpage/container-top.png") top center no-repeat;
|
||||
}
|
||||
#js-maincol-fl, {
|
||||
#js-maincol-fl {
|
||||
padding:30px 30px 0 30px;
|
||||
overflow:hidden;
|
||||
|
||||
|
@ -121,7 +121,6 @@
|
|||
padding: 0 31px 0 11px;
|
||||
width: 111px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
div.button {
|
||||
|
@ -136,6 +135,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.google_signup {
|
||||
.google_signup_div(24px);
|
||||
}
|
||||
|
||||
.js-rightcol-padd {
|
||||
padding:0;
|
||||
}
|
||||
|
@ -299,10 +302,6 @@ h3.module-title {
|
|||
font-weight: normal;
|
||||
}
|
||||
|
||||
.google_signup {
|
||||
.google_signup_div;
|
||||
}
|
||||
|
||||
.landingheader {
|
||||
border-bottom: solid 5px @medium-blue;
|
||||
float: left;
|
||||
|
|
|
@ -11,12 +11,16 @@
|
|||
margin: 0 auto;
|
||||
padding: 10px 0;
|
||||
font-size: @font-size-default;
|
||||
line-height: 18px;
|
||||
}
|
||||
line-height: @font-size-default*1.5;
|
||||
|
||||
.helptext {
|
||||
font-style: italic;
|
||||
|
||||
#registration input[type="submit"] {
|
||||
margin: 0 auto;
|
||||
padding: 5px 0;
|
||||
&:before {
|
||||
white-space: pre;
|
||||
content: "\A";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#login {
|
||||
|
@ -25,40 +29,14 @@
|
|||
margin: 10px auto;
|
||||
float: left;
|
||||
padding: 10px;
|
||||
width: 50%;
|
||||
|
||||
form {
|
||||
label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 90%;
|
||||
.one-border-radius(5px);
|
||||
border: 1px solid @blue-grey;
|
||||
.height(18px);
|
||||
margin-bottom: 16px;
|
||||
|
||||
&[type=submit] {
|
||||
text-decoration: capitalize;
|
||||
.actionbuttons;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border: solid 1px @call-to-action;
|
||||
}
|
||||
}
|
||||
|
||||
span.helptext {
|
||||
display: block;
|
||||
margin-top: -11px;
|
||||
font-style: italic;
|
||||
font-size: @font-size-default;
|
||||
}
|
||||
}
|
||||
width: 50%;
|
||||
|
||||
.google_signup {
|
||||
.google_signup_div;
|
||||
.google_signup_div(32px);
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"] {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -125,4 +103,9 @@
|
|||
border-top: 1px solid @blue-grey;
|
||||
margin-top: 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
label:before {
|
||||
content: "\A";
|
||||
white-space: pre;
|
||||
}
|
|
@ -21,11 +21,8 @@
|
|||
.preview;
|
||||
border-color: @green;
|
||||
margin:10px auto 0 auto;
|
||||
font-size: 120%;
|
||||
|
||||
a {
|
||||
font-size: 110%;
|
||||
}
|
||||
font-size: @font-size-larger;
|
||||
line-height: @font-size-larger*1.5;
|
||||
|
||||
&.pale {
|
||||
border-color: @blue-grey;
|
||||
|
@ -408,6 +405,52 @@ ul.menu{
|
|||
line-height: normal;
|
||||
}
|
||||
|
||||
form.login, #login form {
|
||||
label {
|
||||
display: block;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 90%;
|
||||
.one-border-radius(5px);
|
||||
border: 1px solid @blue-grey;
|
||||
.height(18px);
|
||||
margin-bottom: 6px;
|
||||
|
||||
&[type=submit] {
|
||||
text-decoration: capitalize;
|
||||
.actionbuttons;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border: solid 1px @call-to-action;
|
||||
}
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"] {
|
||||
.height(@font-size-default*1.75);
|
||||
margin-bottom: @font-size-default;
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
input[type="submit"] {
|
||||
font-size: @font-size-larger;
|
||||
}
|
||||
|
||||
|
||||
span.helptext {
|
||||
display: block;
|
||||
margin-top: -11px;
|
||||
font-style: italic;
|
||||
font-size: @font-size-default;
|
||||
}
|
||||
}
|
||||
|
||||
#lightbox_content .google_signup {
|
||||
.google_signup_div(36px);
|
||||
}
|
||||
|
||||
.js-search {
|
||||
float:left;
|
||||
padding-top:25px;
|
||||
|
@ -674,12 +717,9 @@ a.nounderline {
|
|||
border: solid 5px @blue-grey;
|
||||
background: white;
|
||||
z-index: 500;
|
||||
position: absolute;
|
||||
left: 12.5%;
|
||||
width: 75%;
|
||||
top: 25%;
|
||||
margin-left: 0;
|
||||
padding: 9px;
|
||||
max-width: 90%;
|
||||
|
||||
.collapser_x {
|
||||
margin-top: -27px;
|
||||
|
@ -720,6 +760,9 @@ a.nounderline {
|
|||
clear: none;
|
||||
}
|
||||
|
||||
h2 + form, h3 + form, h4 + form {
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
// need to style /about/X pages such that they will not conflict with lightboxed About from header
|
||||
|
|
|
@ -96,19 +96,20 @@
|
|||
border: solid 5px #EDF3F4;
|
||||
}
|
||||
|
||||
.google_signup_div {
|
||||
.google_signup_div(@x) {
|
||||
padding: 14px 0;
|
||||
|
||||
div {
|
||||
.height(24px);
|
||||
.height(@x);
|
||||
float: left;
|
||||
padding-left:5px;
|
||||
padding-left: 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
img {
|
||||
img {
|
||||
float: left;
|
||||
height: 24px;
|
||||
width:24px;
|
||||
height: @x;
|
||||
width: @x;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue