Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Avila2015-10-01 01:23:18 +0000
committerRyan D. Brooks2015-10-01 01:23:18 +0000
commit7a48dce175fa3ad51c804ef11ad51cf68541bef7 (patch)
tree7806bbc60cde2b63183a307fc83e59952589bdd7 /plugins/org.eclipse.osee.web.ui
parent02cc16bd38031bf570bd1dca346879c7a0eef4be (diff)
downloadorg.eclipse.osee-7a48dce175fa3ad51c804ef11ad51cf68541bef7.tar.gz
org.eclipse.osee-7a48dce175fa3ad51c804ef11ad51cf68541bef7.tar.xz
org.eclipse.osee-7a48dce175fa3ad51c804ef11ad51cf68541bef7.zip
refactor: Make subtable in Dispo easier to use
Diffstat (limited to 'plugins/org.eclipse.osee.web.ui')
-rw-r--r--plugins/org.eclipse.osee.web.ui/src/dispo/css/user.css10
-rw-r--r--plugins/org.eclipse.osee.web.ui/src/dispo/views/user.html8
2 files changed, 13 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.web.ui/src/dispo/css/user.css b/plugins/org.eclipse.osee.web.ui/src/dispo/css/user.css
index a29a4bc2eec..2c8c97baf90 100644
--- a/plugins/org.eclipse.osee.web.ui/src/dispo/css/user.css
+++ b/plugins/org.eclipse.osee.web.ui/src/dispo/css/user.css
@@ -33,7 +33,8 @@
}
#annotationsGrid {
-background-color: lightslategray;
+ margin-top: 20px;
+ background-color: lightslategray;
}
.textarea {
@@ -41,11 +42,14 @@ background-color: lightslategray;
}
#itemSelectedBar {
- background-color: lightcyan;
+ height: 25px;
+ width: 100%;
+ position: fixed;
+ background-color: lightcyan;
+ border-bottom: 3px solid Black;
}
-
#compareText {
width: 110px;
margin: 0px 0px 0px 75px;
diff --git a/plugins/org.eclipse.osee.web.ui/src/dispo/views/user.html b/plugins/org.eclipse.osee.web.ui/src/dispo/views/user.html
index 62dfd4dc484..f2e2963fd58 100644
--- a/plugins/org.eclipse.osee.web.ui/src/dispo/views/user.html
+++ b/plugins/org.eclipse.osee.web.ui/src/dispo/views/user.html
@@ -38,18 +38,22 @@
</div>
<div id="bottom-content">
<div ng-dblclick="getSourceFlie()" id="itemSelectedBar">
- Item: {{ selectedItem.name || "Select an Item"}} Failures: {{ selectedItem.discrepanciesAsRanges || "N/A"}}
+ Item: {{ selectedItem.name || "Select an Item"}} Failures: {{ selectedItem.discrepanciesAsRanges || "None"}}
</div>
<div id="annotationsGrid">
<table class="table subTable">
+ <th width="50px" ng-show="type == 'codeCoverage'">Method</th>
<th ng-click="sort()">{{ annotationHeaders.locationRefs }}</th>
<th>{{ annotationHeaders.resolutionType }}</th>
<th>{{ annotationHeaders.resolution }}</th>
<th>Developer Notes</th>
- <th ng-show="type != 'codeCoverage'"Customer Notes</th>
+ <th ng-show="type != 'codeCoverage'">Customer Notes</th>
<th ng-show="type == 'codeCoverage'">Text</th>
<th width="50px;">Delete</th>
<tr ng-repeat="annotation in annotations">
+ <td ng-show="type == 'codeCoverage'">
+ <textarea ng-class="{annotationInput: true, invalid: getInvalidLocRefs(annotation), details: annotation.showDeets}" ng-disabled="true" ng-model="selectedItem.methodNumber" type=text></textarea>
+ </td>
<td>
<textarea ng-class="{annotationInput: true, invalid: getInvalidLocRefs(annotation), details: annotation.showDeets}" ng-disabled="isDefaultResolution(annotation);" ng-model="annotation.locationRefs" type=text ng-model-onblur ng-change="editAnnotation(annotation); saveLastFocused(this);" ng-dblclick="toggleDetails(annotation)"></textarea>
</td>

Back to the top