summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorByron <byroncorrales@gmail.com>2011-12-24 22:24:52 -0600
committerByron <byroncorrales@gmail.com>2011-12-24 22:24:52 -0600
commitf17f2b83f5deb4039d1096a0ca0f4ecdf288dfa5 (patch)
treef075624389a374429c85ac8b97a2934fdd079514
parent6d2ee9b59984d95d8179a82a64b79be3b62dc48e (diff)
downloadaskbot-f17f2b83f5deb4039d1096a0ca0f4ecdf288dfa5.tar.gz
askbot-f17f2b83f5deb4039d1096a0ca0f4ecdf288dfa5.tar.bz2
askbot-f17f2b83f5deb4039d1096a0ca0f4ecdf288dfa5.zip
A little fix in close button of comments
-rw-r--r--askbot/skins/default/media/style/style.css4
-rw-r--r--askbot/skins/default/media/style/style.less5
2 files changed, 6 insertions, 3 deletions
diff --git a/askbot/skins/default/media/style/style.css b/askbot/skins/default/media/style/style.css
index 28656b08..e01256ca 100644
--- a/askbot/skins/default/media/style/style.css
+++ b/askbot/skins/default/media/style/style.css
@@ -267,8 +267,8 @@ ul#related-tags li{margin:0 5px 8px 0;float:left;clear:left;}
.question-page .comments div.comment:hover{background-color:#efefef;}
.question-page .comments a.author{background-color:inherit;color:#1b79bd;padding:0;}
.question-page .comments a.author:hover{text-decoration:underline;}
-.question-page .comments span.delete-icon{background:url(../images/close-small.png) no-repeat;}
-.question-page .comments span.delete-icon:hover{border:#BC564B 2px solid;border-radius:10px;-ms-border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-khtml-border-radius:10px;}
+.question-page .comments span.delete-icon{background:url(../images/close-small.png) no-repeat;border:0;width:14px;height:14px;}
+.question-page .comments span.delete-icon:hover{border:#BC564B 2px solid;border-radius:10px;-ms-border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-khtml-border-radius:10px;margin:-3px 0px 0px -2px;}
.question-page .comments .content{margin-bottom:7px;}
.question-page .comments .comment-votes{float:left;width:37px;line-height:130%;padding:6px 5px 6px 3px;}
.question-page .comments .comment-body{line-height:1.3;margin:3px 26px 0 46px;padding:5px 3px;color:#666;font-size:13px;}.question-page .comments .comment-body .edit{padding-left:6px;}
diff --git a/askbot/skins/default/media/style/style.less b/askbot/skins/default/media/style/style.less
index a19c9f97..6f77b860 100644
--- a/askbot/skins/default/media/style/style.less
+++ b/askbot/skins/default/media/style/style.less
@@ -1845,11 +1845,14 @@ ul#related-tags li {
}
span.delete-icon{
background:url(../images/close-small.png) no-repeat;
+ border:0;
+ width:14px;
+ height:14px;
}
span.delete-icon:hover{
border:#BC564B 2px solid;
.rounded-corners(10px);
-
+ margin: -3px 0px 0px -2px;
}
.content {
margin-bottom: 7px;