summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorByron <byroncorrales@gmail.com>2011-12-08 21:29:46 -0600
committerByron <byroncorrales@gmail.com>2011-12-08 21:29:46 -0600
commit25e678ab5f36a28db5e7061d0038001649463942 (patch)
tree08da3f71395d6dccb29af58d29fccd30d9aa4d9b
parent3017fd38f6965cbc41714a678a8df29f5e97e2f2 (diff)
downloadaskbot-25e678ab5f36a28db5e7061d0038001649463942.tar.gz
askbot-25e678ab5f36a28db5e7061d0038001649463942.tar.bz2
askbot-25e678ab5f36a28db5e7061d0038001649463942.zip
user profile navbar and comment form aligment
-rw-r--r--askbot/skins/default/media/style/style.css4
-rw-r--r--askbot/skins/default/media/style/style.less10
-rw-r--r--askbot/skins/default/templates/user_profile/user_moderate.html1
-rw-r--r--askbot/skins/default/templates/user_profile/user_tabs.html2
4 files changed, 13 insertions, 4 deletions
diff --git a/askbot/skins/default/media/style/style.css b/askbot/skins/default/media/style/style.css
index 8a156493..088eb7a8 100644
--- a/askbot/skins/default/media/style/style.css
+++ b/askbot/skins/default/media/style/style.css
@@ -5,6 +5,7 @@ h1,h2,h3,h4,h5,h6,ul,li,dl,dt,dd,form,img,p{margin:0;padding:0;border:none;}
label{vertical-align:middle;}
hr{border:none;border-top:1px dashed #ccccce;}
input,select{vertical-align:middle;font-family:Trebuchet MS,"segoe ui",Helvetica,Tahoma,Verdana,MingLiu,PMingLiu,Arial,sans-serif;margin-left:0px;}
+textarea:focus,input:focus{outline:none;}
iframe{border:none;}
p{font-size:14px;line-height:140%;margin-bottom:6px;}
a{color:#1b79bd;text-decoration:none;cursor:pointer;}
@@ -111,6 +112,7 @@ body.anon #searchBar .searchInputCancelable{width:405px;}
.tabsA .label,.tabsC .label{float:left;color:#646464;margin-top:4px;margin-right:5px;}
.main-page .tabsA .label{margin-left:8px;}
.tabsB a{background:#eee;border:1px solid #eee;color:#777;display:block;float:left;height:22px;line-height:28px;margin:5px 0px 0 4px;padding:0 11px 0 11px;text-decoration:none;}
+.tabsC .first{border:none;}
.rss{float:right;font-size:16px;color:#f57900;margin:5px 0px 3px 7px;width:52px;padding-left:2px;padding-top:3px;background:#ffffff url(../images/feed-icon-small.png) no-repeat center right;float:right;font-family:Georgia,serif;font-size:16px;}
.rss:hover{color:#F4A731 !important;}
#questionCount{font-weight:bold;font-size:23px;color:#7ea9b3;width:200px;float:left;margin-bottom:8px;padding-top:6px;font-family:'Yanone Kaffeesatz',sans-serif;}
@@ -258,7 +260,7 @@ span.delete-icon:hover{background:url(../images/close-small-dark.png) top no-rep
.question-page .comments .controls a:hover{background-color:#f5f0c9;text-decoration:none;}
.question-page .comments .button{color:#988e4c;font-size:11px;padding:3px;cursor:pointer;}
.question-page .comments a{background-color:inherit;color:#1b79bd;padding:0;}
-.question-page .comments form.post-comments{margin:3px 30px 4px 5px;}
+.question-page .comments form.post-comments{margin:3px 10px 7px 0px;}
.question-page .comments textarea{height:42px;width:100%;margin:12px 0 5px 1px;font-family:Arial;outline:none;overflow:auto;font-size:12px;line-height:140%;padding-left:2px;padding-top:4px;border:#cce6ec 3px solid;}
.question-page .comments input{margin-left:10px;margin-top:1px;vertical-align:top;width:100px;}
.question-page .comments button{background:url(../images/small-button-blue.png) repeat-x top;border:0;color:#4a757f;font-family:Arial;font-size:13px;width:100px;font-weight:bold;height:27px;line-height:25px;margin-top:-2px;cursor:pointer;border-radius:4px;-ms-border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;text-shadow:0px 1px 0px #e6f6fa;-moz-text-shadow:0px 1px 0px #e6f6fa;-webkit-text-shadow:0px 1px 0px #e6f6fa;-webkit-box-shadow:1px 1px 2px #808080;-moz-box-shadow:1px 1px 2px #808080;box-shadow:1px 1px 2px #808080;float:left;}
diff --git a/askbot/skins/default/media/style/style.less b/askbot/skins/default/media/style/style.less
index 5d54d8a2..965d7408 100644
--- a/askbot/skins/default/media/style/style.less
+++ b/askbot/skins/default/media/style/style.less
@@ -39,6 +39,10 @@ input, select {
margin-left:0px;
}
+textarea:focus, input:focus{
+ outline: none;
+}
+
iframe {
border: none;
}
@@ -779,6 +783,10 @@ body.anon {
text-decoration: none;
}
+.tabsC .first{
+ border:none;
+}
+
.rss {
float: right;
font-size: 16px;
@@ -1749,7 +1757,7 @@ span.delete-icon:hover {
}
form.post-comments {
- margin: 3px 30px 4px 5px;
+ margin: 3px 10px 7px 0px;
}
textarea {
diff --git a/askbot/skins/default/templates/user_profile/user_moderate.html b/askbot/skins/default/templates/user_profile/user_moderate.html
index b2f350df..048f35b4 100644
--- a/askbot/skins/default/templates/user_profile/user_moderate.html
+++ b/askbot/skins/default/templates/user_profile/user_moderate.html
@@ -20,7 +20,6 @@
<input type="submit" class="submit" name="change_status" value="{% trans %}Save{% endtrans %}" />
</form>
{% endif %}
-<hr/>
<h3>
{% if request.user == view_user %}
{% trans reputation=view_user.reputation %}Your current reputation is {{reputation}} points{% endtrans %}
diff --git a/askbot/skins/default/templates/user_profile/user_tabs.html b/askbot/skins/default/templates/user_profile/user_tabs.html
index 0c7c4599..1468a19a 100644
--- a/askbot/skins/default/templates/user_profile/user_tabs.html
+++ b/askbot/skins/default/templates/user_profile/user_tabs.html
@@ -1,7 +1,7 @@
<!-- user_tabs.html -->
<div class="tabBar tabBar-profile">
<div class="tabsC">
- <a id="stats" {% if tab_name=="stats" %}class="on"{% endif %}
+ <a id="stats" {% if tab_name=="stats" %}class="on first"{%else%}class="first"{% endif %}
title="{% trans %}User profile{% endtrans %}"
href="{% url user_profile view_user.id, view_user.username|slugify %}?sort=stats"
><span>{% trans %}overview{% endtrans %}</span></a>