Commit 76f98a17 by Reda Lemeden

Added autocomplete styles and removed commenting limit in Askbot

--HG--
branch : bridger-dev
parent 2be705ca
...@@ -62,14 +62,52 @@ body.askbot { ...@@ -62,14 +62,52 @@ body.askbot {
margin-bottom: 70px; 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;
}
...@@ -275,7 +275,7 @@ div.question-header { ...@@ -275,7 +275,7 @@ div.question-header {
} }
.counter { .counter {
color: #888; color: #888;
display: block; display: none;
float: right; float: right;
margin-top: 5px; margin-top: 5px;
text-align: right; text-align: right;
......
...@@ -39,7 +39,7 @@ ul.tags { ...@@ -39,7 +39,7 @@ ul.tags {
float: none; float: none;
left: 10px; left: 10px;
opacity: 0.5; opacity: 0.5;
padding: 3px 6px; padding: 4px 6px;
position: relative; position: relative;
top: 1px; top: 1px;
......
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