You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2016/10/17 21:07:50 UTC

nifi git commit: [NIFI-2898] Add Processor dialog processor descriptions now scrollable

Repository: nifi
Updated Branches:
  refs/heads/master b9a940bbd -> 9fb303941


[NIFI-2898] Add Processor dialog processor descriptions now scrollable

This closes #1134.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/9fb30394
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/9fb30394
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/9fb30394

Branch: refs/heads/master
Commit: 9fb3039416d05ea1e76e530c29527d466927e1d1
Parents: b9a940b
Author: Scott Aslan <sc...@gmail.com>
Authored: Thu Oct 13 16:55:17 2016 -0400
Committer: Pierre Villard <pi...@gmail.com>
Committed: Mon Oct 17 23:07:39 2016 +0200

----------------------------------------------------------------------
 .../nifi-web-ui/src/main/webapp/css/new-processor-dialog.css       | 1 +
 .../js/nf/canvas/header/components/nf-ng-processor-component.js    | 2 ++
 2 files changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/9fb30394/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-processor-dialog.css
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-processor-dialog.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-processor-dialog.css
index b95d2af..4444b07 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-processor-dialog.css
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-processor-dialog.css
@@ -61,6 +61,7 @@
     height: 62px;
     font-size: 12px;
     line-height: 16px;
+    overflow-y: auto;
 }
 
 #processor-types-table {

http://git-wip-us.apache.org/repos/asf/nifi/blob/9fb30394/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/header/components/nf-ng-processor-component.js
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/header/components/nf-ng-processor-component.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/header/components/nf-ng-processor-component.js
index 387bfd4..08e78cd 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/header/components/nf-ng-processor-component.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/header/components/nf-ng-processor-component.js
@@ -310,6 +310,8 @@ nf.ng.ProcessorComponent = function (serviceProvider) {
                                     $('#processor-type-description').html(processorType.description).ellipsis();
                                 }
 
+                                nf.Common.toggleScrollable($('#processor-type-description').get(0));
+
                                 // populate the dom
                                 $('#processor-type-name').text(processorType.label).ellipsis();
                                 $('#selected-processor-name').text(processorType.label);