Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes ui bug
  • Loading branch information
Halleck45 committed Oct 23, 2012
1 parent 0e3d6f5 commit a17b770
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 4 additions & 2 deletions web/app/views/partials/feature-detail/scenarios.html
Expand Up @@ -70,7 +70,7 @@
<button class=" btn" ng-click="addStep( scenario, {type:'Then', text:'...'} );"><i class="icon icon-plus-sign"></i> Expected result</button>
</div>

<div class="scenario-examples" ui-show="searchVars(scenario).length > 0">
<div class="scenario-examples" ng-class="{'hide': searchVars(scenario).length == 0}">
<div class="def-hide-handler">
<h5>Examples:</h5>
<table class="table table-condensed">
Expand Down Expand Up @@ -99,10 +99,12 @@ <h5>Examples:</h5>

<div class="def-hide animate table-act">
<button class="def-hide animate btn btn-small" ng-click="addExampleRow(scenario)">add row</button>
<br /><i class="icon icon-info-sign"></i> <i>Use the &lt;name1&gt; notation in any step to add new column</i>
</div>
</div>
</div>
<div class="warning">
<i class="icon icon-info-sign"></i> <i>Use the &lt;name1&gt; notation in any step to add new example</i>
</div>
</div>
</div>
<div class="box-act"><button class="btn btn-primary" ng-click="addScenario(feature)">new scenario</button></div>
4 changes: 1 addition & 3 deletions web/css/style.css
Expand Up @@ -128,9 +128,7 @@ input.feature-main-title {
min-height: 0;
max-height: 0;
padding: 0 18px;
-moz-opacity: 0.1;
opacity: 0.1;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=10);
border:none;
}
.lateral-preview.ui-scrollfix .feature-infos-preview {
height:auto;
Expand Down

0 comments on commit a17b770

Please sign in to comment.