Better vertical offset in selectrcmed modal
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/83758624 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/83758624 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/83758624 Branch: refs/heads/master Commit: 83758624c8c1d42dbe496a9d4475fd94ec69f5bf Parents: af84eae Author: Michael Joyce <[email protected]> Authored: Fri Jul 18 14:55:20 2014 -0700 Committer: Michael Joyce <[email protected]> Committed: Fri Jul 18 14:55:20 2014 -0700 ---------------------------------------------------------------------- ocw-ui/frontend-new/app/views/selectrcmed.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/83758624/ocw-ui/frontend-new/app/views/selectrcmed.html ---------------------------------------------------------------------- diff --git a/ocw-ui/frontend-new/app/views/selectrcmed.html b/ocw-ui/frontend-new/app/views/selectrcmed.html index 4438cdf..0db7451 100644 --- a/ocw-ui/frontend-new/app/views/selectrcmed.html +++ b/ocw-ui/frontend-new/app/views/selectrcmed.html @@ -20,17 +20,17 @@ <div ng-controller="RcmedSelectionCtrl"> <div class="row"> <div class="col-md-10 col-md-offset-1"> - <div class="row">Select the RCMED dataset that you would like use.</div> - <div class="row"> + <div class="row top3">Select the RCMED dataset that you would like use.</div> + <div class="row top3"> <select ng-change="dataSelectUpdated()" class="form-control" ng-model="datasetSelection" ng-options="obs as obs.longname for obs in availableObs"></select> </div> - <div class="row">Select the dataset parameter that you would like to test.</div> - <div class="row"> + <div class="row top3">Select the dataset parameter that you would like to test.</div> + <div class="row top3"> <select class="form-control" ng-model="parameterSelection" ng-options="param as param.shortname for param in retrievedObsParams"></select> </div> - <div class="row"> - <div class="col-md-4 col-md-offset-1"> + <div class="row top3"> + <div class="col-md-3"> <button class="btn btn-primary btn-block-left" ng-click="addObservation()">Add Observation</button> </div> <div class="pull-left small-alert" ng-show="fileAdded">Successfully added dataset...</div>
