Skip to content

Commit

Permalink
move panel offscreen on large screens, fix typo's , change header siz…
Browse files Browse the repository at this point in the history
…e on results tab
  • Loading branch information
ConnorStroomberg committed Oct 3, 2014
1 parent 93b44b2 commit 3358546
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/css/mcda-drugis.css
Original file line number Diff line number Diff line change
Expand Up @@ -8484,7 +8484,7 @@ input[type='file'] {

/* line 339, ../../sass/_main.scss */
.animate-hide.ng-hide {
right: -520px;
right: -1024px;
}

/* ---- //animate sidepanel -------- */
Expand Down
2 changes: 1 addition & 1 deletion app/css/mcda-plain.css
Original file line number Diff line number Diff line change
Expand Up @@ -8315,7 +8315,7 @@ input[type='file'] {

/* line 339, ../../sass/_main.scss */
.animate-hide.ng-hide {
right: -520px;
right: -1024px;
}

/* ---- //animate sidepanel -------- */
Expand Down
2 changes: 1 addition & 1 deletion app/js/directives.js
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ define(['require', 'underscore', 'jQuery', 'angular', 'd3', 'nvd3'], function(re
};
},
templateUrl: mcdaRootPath + 'partials/modal.html'
};v
};
});

directives.directive('remarkblock', function(mcdaRootPath) {
Expand Down
8 changes: 4 additions & 4 deletions app/views/results.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h4 ng-show="!isEditTitleVisible" class="subheader">

<section class="row underlined-div" style="height: 450px;">
<div class="columns large-12">
<h5>Rank acceptabilities</h5>
<h4>Rank acceptabilities</h4>
<div style="width: 400px; height: 400px">
<rank-plot value="currentStep.results.ranks.data"
parse-fn="rankGraphData"
Expand Down Expand Up @@ -49,7 +49,7 @@ <h5>Rank acceptabilities</h5>

<section class="row underlined-div">
<div class="columns large-6">
<h5>Alternatives per rank</h5>
<h4>Alternatives per rank</h4>
<select ng-model="currentStep.selectedRank" class="large-3">
<option ng-repeat="(k,v) in currentStep.problem.alternatives"
value="{{$index}}"
Expand All @@ -63,7 +63,7 @@ <h5>Alternatives per rank</h5>
</div>
</div>
<div class="columns large-6">
<h5>Ranks per alternative</h5>
<h4>Ranks per alternative</h4>
<select ng-model="currentStep.selectedAlternative" class="large-3">
<option ng-repeat="(key, alternative) in currentStep.problem.alternatives"
value="{{key}}"
Expand All @@ -76,7 +76,7 @@ <h5>Ranks per alternative</h5>
</div>
</div>
</section>
<h5>Central Weights</h5>
<h4>Central Weights</h4>
<section class="row">
<div class="columns large-12">
<div style="width: 650px; height: 350px">
Expand Down
2 changes: 1 addition & 1 deletion sass/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ input[type='file'] {
}

.animate-hide.ng-hide {
right: -520px;
right: -1024px;
}

/* ---- //animate sidepanel -------- */
Expand Down

0 comments on commit 3358546

Please sign in to comment.