Added autocomplete styles and removed commenting limit in Askbot

--HG--
branch : bridger-dev
This commit is contained in:
Reda Lemeden
2012-02-21 10:59:42 -05:00
parent 2be705ca01
commit 76f98a17c8
3 changed files with 45 additions and 7 deletions

View File

@@ -62,14 +62,52 @@ body.askbot {
margin-bottom: 70px;
}
// span, a {
// text-decoration: none;
// color: #888;
// font-weight: bold;
// }
}
}
}
}
}
// Autocomplete
.acInput {
width: 200px;
}
.acResults {
background-color: #fff;
border: 1px solid #ababab;
overflow: hidden;
padding: 0px;
@include box-shadow(0 2px 2px #bbb);
ul {
list-style-position: outside;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
li {
cursor: pointer;
display: block;
font: menu;
margin: 0px;
overflow: hidden;
padding: 5px 10px;
text-align: left;
border-top: 1px solid #eee;
width: 100%;
}
}
.acLoading {
background : url('../images/indicator.gif') right center no-repeat;
}
.acSelect {
background-color: $mit-red;
color: #fff;
}

View File

@@ -275,7 +275,7 @@ div.question-header {
}
.counter {
color: #888;
display: block;
display: none;
float: right;
margin-top: 5px;
text-align: right;

View File

@@ -39,7 +39,7 @@ ul.tags {
float: none;
left: 10px;
opacity: 0.5;
padding: 3px 6px;
padding: 4px 6px;
position: relative;
top: 1px;