CLIMATE-517 - Fix start and end date layout overlap issues - Fix the start and end date layout problems. An additional column wrapped around the display of the dates caused labels and values to overlap.
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/030c5565 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/030c5565 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/030c5565 Branch: refs/heads/master Commit: 030c5565563b5162763069e04af93cca9dfc2797 Parents: 2ffc6ec Author: Michael Joyce <[email protected]> Authored: Thu Sep 4 11:07:19 2014 -0700 Committer: Michael Joyce <[email protected]> Committed: Thu Sep 4 11:07:19 2014 -0700 ---------------------------------------------------------------------- ocw-ui/frontend/app/views/main.html | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/030c5565/ocw-ui/frontend/app/views/main.html ---------------------------------------------------------------------- diff --git a/ocw-ui/frontend/app/views/main.html b/ocw-ui/frontend/app/views/main.html index 2f428e5..bafb2f3 100644 --- a/ocw-ui/frontend/app/views/main.html +++ b/ocw-ui/frontend/app/views/main.html @@ -127,13 +127,9 @@ under the License. <div class="col-md-9"> <div class="row"> <div class="col-md-2 col-md-offset-1 text-center">Start:</div> - <div class="col-md-2"> - <div class="col-md-2 text-center">{{dataset.timeVals.start | ISODateToMiddleEndian}}</div> - </div> + <div class="col-md-2 text-center">{{dataset.timeVals.start | ISODateToMiddleEndian}}</div> <div class="col-md-2 text-center">End:</div> - <div class="col-md-2"> - <div class="col-md-2 text-center">{{dataset.timeVals.end | ISODateToMiddleEndian}}</div> - </div> + <div class="col-md-2 text-center">{{dataset.timeVals.end | ISODateToMiddleEndian}}</div> </div> <!--Lat/Long Values!--> <div class="row">
