aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/webapp/stylesheets/style.css
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2011-05-24 15:22:06 +0200
committerFabrice Bellingard <bellingard@gmail.com>2011-05-24 19:03:19 +0200
commit4b6fbec3e9fc12e5be02878c23b313c460a1266d (patch)
tree6d2dced867691e856f4021e110ca3fa823008893 /sonar-server/src/main/webapp/stylesheets/style.css
parent3e32f3cd621a9c751d8355dda697e9fb224b3957 (diff)
downloadsonarqube-4b6fbec3e9fc12e5be02878c23b313c460a1266d.tar.gz
sonarqube-4b6fbec3e9fc12e5be02878c23b313c460a1266d.zip
SONAR-2443 Improve the user select-box when searching for review
- For field "author" and "assignee" - Done as a reusable component
Diffstat (limited to 'sonar-server/src/main/webapp/stylesheets/style.css')
-rw-r--r--sonar-server/src/main/webapp/stylesheets/style.css36
1 files changed, 34 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css
index 40cc82ebe77..6fa9beb0a19 100644
--- a/sonar-server/src/main/webapp/stylesheets/style.css
+++ b/sonar-server/src/main/webapp/stylesheets/style.css
@@ -830,7 +830,7 @@ span.rulename a:hover {
-
+/* REVIEWS */
div#review .actions{
visibility: hidden;
}
@@ -906,7 +906,39 @@ div.comment-excerpt {
}
-
+/* AUTOCOMPLETE FIELDS */
+div.autocomplete {
+ position:absolute;
+ width:250px;
+ background-color:#fff;
+ border:1px solid #ccc;
+ margin:0;
+ padding:0;
+ color: #111;
+ line-height: 1em;
+}
+div.autocomplete ul {
+ list-style-type:none;
+ margin:0;
+ padding:0;
+}
+div.autocomplete ul li.selected {
+ background-color: #4b9fd5;
+ color: #fff;
+ margin: 0;
+}
+div.autocomplete ul li {
+ list-style-type:none;
+ display:block;
+ margin:0;
+ padding: 5px 10px;
+ cursor:pointer;
+ color: #333;
+ line-height: 1em;
+}
+div.autocomplete strong {
+ font-weight: bold;
+}