Commit 7e92eda1 authored by Michal Čihař's avatar Michal Čihař

Improve look for social auth icons

- make them bigger
- without button border
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 46f33071
...@@ -37,8 +37,8 @@ SOCIALS = { ...@@ -37,8 +37,8 @@ SOCIALS = {
'facebook': {'name': 'Facebook', 'fa_icon': 'facebook'}, 'facebook': {'name': 'Facebook', 'fa_icon': 'facebook'},
} }
FA_SOCIAL_TEMPLATE = u'<i class="fa fa-lg fa-{fa_icon}"></i> {name}' FA_SOCIAL_TEMPLATE = u'<i class="fa fa-lg fa-4x fa-wl-social fa-{fa_icon}"></i><br />{name}'
FL_SOCIAL_TEMPLATE = u'<span class="fl fa-lg fl-{fl_icon}"></span> {name}' FL_SOCIAL_TEMPLATE = u'<span class="fl fa-lg fa-4x fl-{fl_icon}"></span><br />{name}'
@register.simple_tag @register.simple_tag
......
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<div class="panel-body"> <div class="panel-body">
{% for name in login_backends %} {% for name in login_backends %}
<a class="btn btn-default" href="{% url 'social:begin' name %}{% if next %}?next={{ next }}{% endif %}">{% auth_name name %}</a> <a class="btn btn-link" href="{% url 'social:begin' name %}{% if next %}?next={{ next }}{% endif %}">{% auth_name name %}</a>
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
<div class="panel-body"> <div class="panel-body">
{% for name in registration_backends %} {% for name in registration_backends %}
<a class="btn btn-default" href="{% url 'social:begin' name %}">{% auth_name name %}</a> <a class="btn btn-link" href="{% url 'social:begin' name %}">{% auth_name name %}</a>
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
......
...@@ -239,3 +239,6 @@ img.engage-icon { ...@@ -239,3 +239,6 @@ img.engage-icon {
stroke: #337AB7; stroke: #337AB7;
stroke-width: 15px; stroke-width: 15px;
} }
.fa-wl-social {
padding: 7px;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment