Fix select box look and feel in settings modal
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/1a788dd5 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/1a788dd5 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/1a788dd5 Branch: refs/heads/master Commit: 1a788dd5cbccdad1f39855f989240d34e015ed98 Parents: 8375862 Author: Michael Joyce <[email protected]> Authored: Fri Jul 18 14:57:10 2014 -0700 Committer: Michael Joyce <[email protected]> Committed: Fri Jul 18 14:57:10 2014 -0700 ---------------------------------------------------------------------- ocw-ui/frontend-new/app/views/main.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/1a788dd5/ocw-ui/frontend-new/app/views/main.html ---------------------------------------------------------------------- diff --git a/ocw-ui/frontend-new/app/views/main.html b/ocw-ui/frontend-new/app/views/main.html index 20be7b2..9ed6dd7 100644 --- a/ocw-ui/frontend-new/app/views/main.html +++ b/ocw-ui/frontend-new/app/views/main.html @@ -13,10 +13,10 @@ </div> <hr /> <h4>Select how you would like to temporally re-grid the datasets.</h4> - <select ng-model="settings.temporal.selected" ng-options="opt for opt in settings.temporal.options"></select> + <select class="form-control" ng-model="settings.temporal.selected" ng-options="opt for opt in settings.temporal.options"></select> <hr /> <h4>Select which dataset to use as the reference.</h4> - <select ng-model="settings.spatialSelect" ng-options="dataset as dataset.name for dataset in datasets"></select> + <select class="form-control" ng-model="settings.spatialSelect" ng-options="dataset as dataset.name for dataset in datasets"></select> <hr /> <!-- Temporarily hidden for work on CLIMATE-365.--> <div ng-hide=true>
