From 383d7098318b748ca2f1d85f4e07d675c92806f3 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sat, 11 Jul 2015 15:57:50 -0400 Subject: [PATCH] Expanded the ng-repeat associated with the rows in the data model this will allow for details to be expanded later. --- dist/views/dataModelView.html | 5 ++++- scss/main.scss | 10 +++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/dist/views/dataModelView.html b/dist/views/dataModelView.html index 3efb963..32748d9 100644 --- a/dist/views/dataModelView.html +++ b/dist/views/dataModelView.html @@ -26,11 +26,14 @@ <div class="analyzer-content"> <table class="data-model-table"> <tbody> - <tr class="data-model-table-key-row" ng-repeat="datapoint in datapoints"> + <tr class="data-model-table-key-row" ng-repeat-start="datapoint in datapoints"> <td><span class="data-model-table-expand-icon"></span></td> <td>{{datapoint.key}}</td> <td>{{datapoint.description}}</td> </tr> + <tr class="data-model-table-details-row" ng-repeat-end> + <td colspan="3">This is just a test</td> + </tr> </tbody> </table> </div> diff --git a/scss/main.scss b/scss/main.scss index cb461a6..78f59b1 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -312,7 +312,7 @@ footer div { } .analyzer-title-text { - padding-top: 7px; + padding-top: 5px; display: inline-block; } @@ -381,3 +381,11 @@ footer div { @extend .octicon; @extend .octicon-triangle-right; } + +.data-model-table-details-row td { + padding-left: 50px; + padding-right: 50px; + padding-top: 10px; + padding-bottom: 10px; + background-color: #ffffff; +} -- GitLab