Commit 12cfae7a authored by Pietro Albini's avatar Pietro Albini Committed by Milo Casagrande

More theme fixes.

parents 21778675 35b99042
...@@ -1384,7 +1384,7 @@ ins { ...@@ -1384,7 +1384,7 @@ ins {
} }
.question-title-link a { .question-title-link a {
color: #0077CC; color: #DD4814;
font-weight: bold; font-weight: bold;
} }
...@@ -2120,24 +2120,28 @@ div.dialog, .context-menu-dropdown { ...@@ -2120,24 +2120,28 @@ div.dialog, .context-menu-dropdown {
div.dialog, .context-menu-dropdown { div.dialog, .context-menu-dropdown {
color: white; color: #000000;
font-size: 11px; font-size: 11px;
outline: none; outline: none;
cursor: pointer;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
padding: 1px 3px 3px 3px; padding: 3px;
-moz-border-radius: 4px; -moz-border-radius: 4px;
-webkit-border-radius: 4px; -webkit-border-radius: 4px;
border-radius: 4px; border-radius: 4px;
border: 2px solid #969696; border: 2px solid #aaaaaa;
background: #ADA69F url('../images/menu-dropdown.png') repeat-x left bottom; background: #f0f0f0;
text-shadow: 0 1px 0 #777; }
div.dialog
{
padding: 30px;
min-width: 300px;
} }
.dialog a, .context-menu-dropdown a { .dialog a, .context-menu-dropdown a {
color: white; color: #ffffff;
font-weight: bold; cursor: pointer;
} }
div.dialog .dialog-wcwontent { div.dialog .dialog-wcwontent {
...@@ -2145,6 +2149,11 @@ div.dialog .dialog-wcwontent { ...@@ -2145,6 +2149,11 @@ div.dialog .dialog-wcwontent {
z-index: 1000; z-index: 1000;
} }
div.dialog .dialog-content table
{
width: 100%;
}
div.dialog .dialog-buttons { div.dialog .dialog-buttons {
margin: 0px; margin: 0px;
height: 25px; height: 25px;
...@@ -2170,6 +2179,7 @@ div.dialog .dialog-buttons a { ...@@ -2170,6 +2179,7 @@ div.dialog .dialog-buttons a {
vertical-align: baseline; vertical-align: baseline;
font-weight: bold; font-weight: bold;
border: 0; border: 0;
cursor: pointer;
} }
div.dialog.confirm, div.dialog.warning { div.dialog.confirm, div.dialog.warning {
...@@ -2344,3 +2354,11 @@ div.wmd-button-bar { ...@@ -2344,3 +2354,11 @@ div.wmd-button-bar {
h3.or_label, .signin_form#dummy_form_unused { h3.or_label, .signin_form#dummy_form_unused {
display: none !important; display: none !important;
} }
.no-item-to-display
{
font-size: 16px;
font-weight: bold;
text-align: center;
padding: 10px;
}
{% extends "user.html" %}
{% load extra_tags question_list_tags i18n %}
{% block usercontent %}
<div class="user-stats-table">
{% if favorites %}
{% for favorite in favorites %}
{% question_list_item favorite.node favorite_count=yes signature_type=badges %}
{% endfor %}
{% else %}
<div class="no-item-to-display">{% trans "No favorite questions to display." %}</div>
{% endif %}
</div>
{% endblock %}
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