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

[13/27] nifi git commit: [NIFI-1459] add css translate3d to properties table editors in order to move the element along the z-axis of the 3D space and allow the scrollbars to properly be poistioned. This closes #1070

[NIFI-1459] add css translate3d to properties table editors in order to move the element along the z-axis of the 3D space and allow the scrollbars to properly be poistioned. This closes #1070


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

Branch: refs/heads/appveyor-improvement
Commit: a8e1c775fd95cfb73ab5453a8e7ec7c1d3e03b98
Parents: 3914141
Author: Scott Aslan <sc...@gmail.com>
Authored: Wed Oct 19 11:57:29 2016 -0400
Committer: Matt Gilman <ma...@gmail.com>
Committed: Wed Oct 19 15:39:58 2016 -0400

----------------------------------------------------------------------
 .../js/jquery/propertytable/jquery.propertytable.js     | 12 +++++++++---
 .../src/main/webapp/js/application.js                   |  6 ++++--
 2 files changed, 13 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/a8e1c775/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
index 47231f0..246129c 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
@@ -77,7 +77,8 @@
                 'background-color': 'rgb(255, 255, 255)',
                 'overflow': 'hidden',
                 'padding': '10px 20px',
-                'cursor': 'move'
+                'cursor': 'move',
+                'transform': 'translate3d(0px, 0px, 0px)'
             }).appendTo(container);
 
             // create the input field
@@ -301,7 +302,8 @@
                 'border-radius': '2px',
                 'box-shadow': 'rgba(0, 0, 0, 0.247059) 0px 2px 5px',
                 'background-color': 'rgb(255, 255, 255)',
-                'cursor': 'move'
+                'cursor': 'move',
+                'transform': 'translate3d(0px, 0px, 0px)'
             }).draggable({
                 cancel: 'input, textarea, pre, .nf-checkbox, .button, .' + editorClass,
                 containment: 'parent'
@@ -506,7 +508,8 @@
                 'border-radius': '2px',
                 'box-shadow': 'rgba(0, 0, 0, 0.247059) 0px 2px 5px',
                 'background-color': 'rgb(255, 255, 255)',
-                'cursor': 'move'
+                'cursor': 'move',
+                'transform': 'translate3d(0px, 0px, 0px)'
             }).draggable({
                 cancel: '.button, .combo',
                 containment: 'parent'
@@ -723,6 +726,7 @@
                     'box-shadow': 'rgba(0, 0, 0, 0.247059) 0px 2px 5px',
                     'background-color': 'rgb(255, 255, 255)',
                     'cursor': 'move',
+                    'transform': 'translate3d(0px, 0px, 0px)',
                     'top': offset.top - 24,
                     'left': offset.left - 20
                 }).appendTo('body');
@@ -805,6 +809,7 @@
                             'box-shadow': 'rgba(0, 0, 0, 0.247059) 0px 2px 5px',
                             'background-color': 'rgb(255, 255, 255)',
                             'cursor': 'move',
+                            'transform': 'translate3d(0px, 0px, 0px)',
                             'top': offset.top - 22,
                             'left': offset.left - 43
                         }).draggable({
@@ -835,6 +840,7 @@
                             'box-shadow': 'rgba(0, 0, 0, 0.247059) 0px 2px 5px',
                             'background-color': 'rgb(255, 255, 255)',
                             'cursor': 'move',
+                            'transform': 'translate3d(0px, 0px, 0px)',
                             'top': offset.top - 26,
                             'left': offset.left - 20
                         });

http://git-wip-us.apache.org/repos/asf/nifi/blob/a8e1c775/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/js/application.js
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/js/application.js b/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/js/application.js
index 1963f3d..a7984d7 100644
--- a/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/js/application.js
+++ b/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-ui/src/main/webapp/js/application.js
@@ -1727,7 +1727,8 @@ var ua = {
                 'overflow': 'hidden',
                 'border-radius': '2px',
                 'box-shadow': 'rgba(0, 0, 0, 0.247059) 0px 2px 5px',
-                'cursor': 'move'
+                'cursor': 'move',
+                'transform': 'translate3d(0px, 0px, 0px)'
             }).draggable({
                 containment: 'parent'
             }).appendTo(container);
@@ -1865,7 +1866,8 @@ var ua = {
                 'overflow': 'hidden',
                 'border-radius': '2px',
                 'box-shadow': 'rgba(0, 0, 0, 0.247059) 0px 2px 5px',
-                'cursor': 'move'
+                'cursor': 'move',
+                'transform': 'translate3d(0px, 0px, 0px)'
             }).draggable({
                 cancel: 'input, textarea, pre, .button, div.' + editorClass,
                 containment: 'parent'