diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/common-ui.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/common-ui.css index 9d4404b9db..e271ff4a6a 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/common-ui.css +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/common-ui.css @@ -209,7 +209,7 @@ label { color: #728e9b; } -input[type=text], input[type=password], textarea { +input[type=text], input[type=password] { background-color: #eaeef0; border: 1px solid #eaeef0; font-family: Roboto, sans-serif; @@ -235,11 +235,22 @@ input:focus, textarea:focus { } textarea { - overflow: hidden; + background-color: #eaeef0; + border: 1px solid #eaeef0; + font-family: Roboto, sans-serif; + font-size: 13px !important; padding: 10px 10px; resize: vertical; + height: 32px; + width: 100%; + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; color: #262626; - font-size: 13px !important; + white-space: pre-wrap; + overflow-y: auto; + overflow-x: hidden; + text-overflow: ellipsis; } ul.property-info { diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/controller-service.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/controller-service.css index fe5808e26d..0ea6de2b8d 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/controller-service.css +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/controller-service.css @@ -150,6 +150,11 @@ div.controller-service-canceling { height: 100%; } +#read-only-controller-service-comments { + height: 100%; + white-space: pre-wrap; +} + /* Disable dialog */ diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/process-group-configuration.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/process-group-configuration.css index f9b0ed5a0a..dcafd5d61d 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/process-group-configuration.css +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/process-group-configuration.css @@ -85,6 +85,10 @@ height: 100px; } +#read-only-process-group-comments { + white-space: pre-wrap; +} + #process-group-controller-services-tab-content { top: 32px; } \ No newline at end of file diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/processor-details.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/processor-details.css index dd3e93f9e7..5b1f75840e 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/processor-details.css +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/processor-details.css @@ -34,6 +34,7 @@ #read-only-processor-comments { height: 100%; + white-space: pre-wrap; } #read-only-processor-bundle { diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/reporting-task.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/reporting-task.css index 7e669b2042..f162e9ce88 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/reporting-task.css +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/reporting-task.css @@ -77,4 +77,9 @@ input.reporting-task-scheduling-period { #reporting-task-comments { height: 100%; +} + +#read-only-reporting-task-comments { + height: 100%; + white-space: pre-wrap; } \ No newline at end of file