NIFI-3291: - Ensuring we don't see a horizontal scrollbar. - Ensuring slick-nifi-theme is bundled.
This closes #1408 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/82cf0c6f Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/82cf0c6f Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/82cf0c6f Branch: refs/heads/master Commit: 82cf0c6fa87ff8e5057b94020ca935daa4381289 Parents: 6170f64 Author: Matt Gilman <[email protected]> Authored: Tue Jan 17 14:48:08 2017 -0500 Committer: Scott Aslan <[email protected]> Committed: Tue Jan 17 15:42:34 2017 -0500 ---------------------------------------------------------------------- .../nifi-framework/nifi-web/nifi-web-ui/pom.xml | 2 ++ .../src/main/webapp/css/new-reporting-task-dialog.css | 4 ++++ .../nifi-web-ui/src/main/webapp/css/policy-management.css | 4 ++++ 3 files changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/82cf0c6f/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml index 33a5298..b38a2f0 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml @@ -786,6 +786,8 @@ assets/**/*, css/common-ui.css, css/common-ui.css.gz, + css/slick-nifi-theme.css, + css/slick-nifi-theme.css.gz, css/message-page.css, css/message-page.css.gz, css/message-pane.css, http://git-wip-us.apache.org/repos/asf/nifi/blob/82cf0c6f/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-reporting-task-dialog.css ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-reporting-task-dialog.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-reporting-task-dialog.css index c9687ad..5f6b8a3 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-reporting-task-dialog.css +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/new-reporting-task-dialog.css @@ -75,6 +75,10 @@ vertical-align: middle; } +#reporting-task-types-table div.slick-viewport { + overflow-x: hidden !important; +} + /* Processor type table filter */ http://git-wip-us.apache.org/repos/asf/nifi/blob/82cf0c6f/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/policy-management.css ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/policy-management.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/policy-management.css index 610fea2..71787db 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/policy-management.css +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/policy-management.css @@ -163,6 +163,10 @@ div.policy-selected-component-type { background-color: #fff; } +#policy-table div.slick-viewport { + overflow-x: hidden !important; +} + #policy-refresh-container { position: absolute; bottom: 20px;
