Skip to content

Commit

Permalink
minor ui change
Browse files Browse the repository at this point in the history
  • Loading branch information
Halleck45 committed Nov 1, 2012
1 parent bea785c commit ead1b99
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
3 changes: 2 additions & 1 deletion web/app/views/features-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@

<div class="container-features">
<div class="span3 well animate-slow feature" ng-repeat="feature in features" ng-class="{'ui-hide-slide':!matchCurrentCriterium(feature)}">
<div class=""><a class="feature-title state state-{{feature.state}}"
<div class="feature-state-flag state state-{{feature.state}}"></div>
<div class=""><a
ng-click="setCurrentFeature(feature)"
href="#feature">{{feature.title}}</a></div>
<div class="feature-inorder"><span>In order to</span> {{feature.inorder}}</div>
Expand Down
13 changes: 12 additions & 1 deletion web/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,15 @@ input.feature-main-title {
}
.container-features .feature-title{
display:block;
}
}
.feature-state-flag {
float:left;
height:100%;
width:10px;
position:absolute;
top:0;
left:0;
}
.feature-state-flag.state-failure { background-color: #46A546; }
.feature-state-flag.state-success { background-color: #9D261D; }
.feature-state-flag.state-pending { background-color: #F89406; }

0 comments on commit ead1b99

Please sign in to comment.