Skip to content

Commit

Permalink
suggest user or owner repos; closes #47
Browse files Browse the repository at this point in the history
  • Loading branch information
radekstepan committed Jan 27, 2016
1 parent e3953f6 commit bae5d69
Show file tree
Hide file tree
Showing 12 changed files with 2,948 additions and 327 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "burnchart",
"version": "3.0.1",
"version": "3.0.2",
"description": "GitHub Burndown Chart as a Service",
"author": "Radek Stepan <[email protected]> (http://radekstepan.com)",
"license": "AGPL-3.0",
Expand Down Expand Up @@ -45,6 +45,7 @@
"proxyquire": "^1.7.3",
"react": "^0.14.6",
"react-addons-css-transition-group": "^0.14.6",
"react-autosuggest": "^3.3.5",
"react-mini-router": "^2.0.0",
"semver": "^5.1.0",
"sortedindex-compare": "0.0.1",
Expand Down
24 changes: 22 additions & 2 deletions public/css/bundle.css
Original file line number Diff line number Diff line change
Expand Up @@ -840,14 +840,14 @@ ul li {
box-sizing: border-box;
padding: 10px;
width: 100%;
border: 1px solid #dde1ed;
border-right: 0;
-webkit-border-radius: 2px 0 0 2px;
-webkit-background-clip: padding-box;
-moz-border-radius: 2px 0 0 2px;
-moz-background-clip: padding;
border-radius: 2px 0 0 2px;
background-clip: padding-box;
border: 1px solid #dde1ed;
border-right: 0;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
Expand All @@ -867,6 +867,26 @@ ul li {
background: #C1041C;
color: #fff;
}
#page #content #add .form .suggest {
position: relative;
}
#page #content #add .form .suggest .list {
position: absolute;
top: 41px;
border: 1px solid #dde1ed;
min-width: 100%;
max-height: 200px;
overflow-y: auto;
}
#page #content #add .form .suggest .list .item {
background: rgba(255, 255, 255, 0.9);
padding: 10px;
display: block;
cursor: pointer;
}
#page #content #add .form .suggest .list .item.focused {
background: #EFEFEF;
}
#page #content #projects {
border: 1px solid #cdcecf;
-webkit-border-radius: 2px;
Expand Down
2 changes: 1 addition & 1 deletion public/css/bundle.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit bae5d69

Please sign in to comment.