Commit cc9c435a authored by Riccardo Padovani's avatar Riccardo Padovani

Risolto bug #1028318

Modificata la barra di ricerca e aggiunte le immagini relative
Modificata la pagina del singolo badge: adesso ogni utente è su una riga
Modificata la sidebar: adesso è in grigio
Modificato il paragrafo con le statistiche sulle domande: il titolo adesso è in alto
Modificato il menù utente nella pagina profilo: thanks to Pietro Albini
Modifiche minori
parent 4b9a81f4
......@@ -201,12 +201,12 @@ blockquote blockquote {
margin: 5px 20px;
height: 35px;
font-size: 17px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
background: #D7D7D7;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px;
line-height: 2;
color: white;
color: black;
}
.container {
......@@ -414,7 +414,7 @@ padding-top: 4px;
#CALeft {
float: left;
width: 84%;
width: 83.5%;
background-color: #e4e4e4;
padding: 5px;
border: solid 1px #D4D4D4;
......@@ -424,15 +424,11 @@ padding-top: 4px;
#CARight {
float: right;
width: 15%;
color: #EEE;
}
#CARight h3 {
background-color: transparent;
font-size: 20px;
font-size: 18px;
text-align: center;
color: #E0E0E0;
text-shadow: 1px 1px 1px #222;
}
#CARight p {
......@@ -591,7 +587,7 @@ padding-top: 4px;
padding-top: 5px;
margin-left: 5px;
margin-bottom: 10px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
background: #D7D7D7;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px;
......@@ -633,6 +629,9 @@ padding-top: 4px;
color: #777777;
font: bold 100% sans-serif;
padding: 2px 4px 3px;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.paginator .prev {
......@@ -1390,15 +1389,35 @@ ins {
width: 380px;
}
#searchBar .searchInputGrey {
border: 3px solid #D7D7D7;
padding: 3px;
font-size: 13px;
height: 18px;
width: 380px;
color: #E7E7E7;
font-style: italic;
}
#searchBar .searchInput:focus {
border: 3px solid #DD4818;
outline: none;
}
#searchBar .searchBtn {
font-size: 14px;
height: 26px;
width: 80px;
background-color: inherit;
background-image: url(../images/light/icon-search.png);
vertical-align: middle;
cursor: pointer;
width: 22px;
height: 22px;
background-repeat: no-repeat;
background-position: center;
border-style: none;
}
#searchBar .searchBtn:hover {
background-image: url(../images/light/icon-search-hover.png);
}
#searchBar .options {
......
......@@ -14,8 +14,9 @@
#user-menu-dropdown {
position: absolute;
background-color: #EEEEEE;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid rgb(221, 72, 20);
-moz-border-radius: 4px 0 4px 4px;
-webkit-border-radius: 4px 0 4px 4px;
-moz-box-shadow: 2px 2px 5px #DD4818;
-webkit-box-shadow: 2px 2px 5px #DD4818;
}
......
......@@ -30,7 +30,7 @@
</div>
<div id="award-list" style="clear:both;margin-left:20px;line-height:25px;">
{% for award in awards %}
<p style="width:220px;float:left">{% user_signature award.user "badges" %}<span class="tag-number"> &#215; {{ award.count|intcomma }}</span></p>
<p style="width:250px;float:left">{% user_signature award.user "badges" %}<span class="tag-number"> &#215; {{ award.count|intcomma }}</span></p><br/>
{% endfor %}
</div>
</div>
......
......@@ -48,7 +48,7 @@
<div id="sub_header_search">
<input type="text" class="searchInput" value="{{ keywords }}" name="q" id="keywords" />
<input type="submit" name="Submit" value="{% trans "search" %}" class="searchBtn" />
<button name="Submit" class="searchBtn" ></button>
</div>
</form>
</div>
......
......@@ -5,22 +5,19 @@
{% enddeclare %}
<div class="boxC">
<h3>{{ questions.paginator.sort_description }}</h3>
<div class="questions-count">
{{ questions.paginator.count }}<span style="color:#EEE;font-size:14px;margin-left:5px;text-shadow: 1px 1px 1px #222;">{{ list_description }}</span>
{{ questions.paginator.count }}<span style="font-size:14px;margin-left:5px;">{{ list_description }}</span>
</div>
{% if answer_count %}
<div class="questions-count">
{{ answer_count }}<span style="color:#EEE;font-size:14px;margin-left:5px;text-shadow: 1px 1px 1px #222;">{% trans "answers" %}</span>
{{ answer_count }}<span style="font-size:14px;margin-left:5px;">{% trans "answers" %}</span>
</div>
{% endif %}
<div>
<p class="nomargin">
{{ questions.paginator.sort_description }}
</p>
</div>
</div>
{% endspaceless %}
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