NIFI-434 adjusting CSS to not break on spaces for the first three columns of a property table
Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/2f09e6ec Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/2f09e6ec Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/2f09e6ec Branch: refs/heads/develop Commit: 2f09e6ec5a1b1b4f652d46a804962a048adaceb9 Parents: 0c5abce Author: danbress <[email protected]> Authored: Mon Mar 23 09:14:29 2015 -0400 Committer: danbress <[email protected]> Committed: Mon Mar 23 10:29:56 2015 -0400 ---------------------------------------------------------------------- .../nifi-web-docs/src/main/webapp/css/component-usage.css | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/2f09e6ec/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/css/component-usage.css ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/css/component-usage.css b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/css/component-usage.css index 45c1e26..6aea18b 100644 --- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/css/component-usage.css +++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/css/component-usage.css @@ -113,6 +113,10 @@ table tr:last-child td:last-child { border-bottom-right-radius:3px; } +td#allowable-values, td#default-value, td#name { + white-space:nowrap; +} + /* links */ a, a:link, a:visited {
