diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/provenance.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/provenance.css
index 16c07884f6..545d3a4198 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/provenance.css
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/provenance.css
@@ -57,6 +57,15 @@
padding-top: 10px;
}
+div.provenance-panel {
+ bottom: 0px;
+ left: 0px;
+ overflow: hidden;
+ position: absolute;
+ right: 0px;
+ top: 40px;
+}
+
/* filter controls */
#provenance-filter-controls {
@@ -84,7 +93,6 @@ input.provenance-filter-list {
}
#oldest-event-message {
- display: none;
font-family: Roboto;
font-size: 13px;
font-weight: normal;
@@ -337,10 +345,13 @@ div.content-detail-value {
/* provenance table */
#provenance-table {
+ position: absolute;
+ top: 78px;
+ left: 0px;
+ bottom: 35px;
+ right: 0px;
overflow: hidden;
- height: 80%;
- width: 100%;
- top: -38px;
+ background-color: #fff;
}
/* provenance lineage */
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-lineage.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-lineage.js
index 5bf38922c4..7c277465b4 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-lineage.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-lineage.js
@@ -1228,7 +1228,7 @@ nf.ProvenanceLineage = (function () {
// show the lineage pane and hide the event search results
$('#provenance-lineage').show();
- $('#provenance-event-search, #provenance-filter-controls, #oldest-event-message').hide();
+ $('#provenance-event-search').hide();
// add the initial lineage
addLineage(lineageResults.nodes, lineageResults.links);
@@ -1247,7 +1247,7 @@ nf.ProvenanceLineage = (function () {
$('#provenance-lineage-slider').slider('destroy');
// view the appropriate panel
- $('#provenance-event-search, #provenance-filter-controls, #oldest-event-message').show();
+ $('#provenance-event-search').show();
$('#provenance-lineage').hide();
});
$('#provenance-lineage-downloader').on('click', function () {
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js
index 4cc9a57718..63d4ffd1ca 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js
@@ -617,7 +617,7 @@ nf.ProvenanceTable = (function () {
// define a custom formatter for the more details column
var moreDetailsFormatter = function (row, cell, value, columnDef, dataContext) {
- return '
';
+ return '
';
};
// define how general values are formatted
@@ -634,12 +634,12 @@ nf.ProvenanceTable = (function () {
// conditionally include the cluster node id
if (nf.Common.SUPPORTS_SVG) {
- markup += '
';
+ markup += '
';
}
// conditionally support going to the component
if (isInShell && nf.Common.isDefinedAndNotNull(dataContext.groupId)) {
- markup += '
';
+ markup += '
';
}
return markup;
@@ -973,7 +973,6 @@ nf.ProvenanceTable = (function () {
// update the oldest event available
$('#oldest-event').html(nf.Common.formatValue(provenanceResults.oldestEvent));
- $('#oldest-event-message').show();
// set the timezone for the start and end time
$('.timezone').text(nf.Common.substringAfterLast(provenanceResults.generated, ' '));