diff --git a/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/css/console-ui.less b/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/css/console-ui.less index 74537f55..172dd971 100644 --- a/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/css/console-ui.less +++ b/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/css/console-ui.less @@ -107,4 +107,8 @@ tr.elc-card { .coral3-Select{ min-width: 100%; } + .dialog-description{ + font-style: italic; + font-size: 12px; + } } diff --git a/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/js/console-ui.filter.js b/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/js/console-ui.filter.js index 41b9e89d..bd887dab 100644 --- a/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/js/console-ui.filter.js +++ b/ui.apps/src/main/content/jcr_root/apps/etoolbox-link-inspector/clientlibs/link-inspector-ui/js/console-ui.filter.js @@ -61,29 +61,29 @@ $updateBtn.appendTo(dialog.footer); const $rootPathField = $(''); - $('
').text("Path (The content path for searching broken links. The search path should be located under /content)").appendTo(dialog.content); + $('
').html("Path (The content path for searching broken links. The search path should be located under /content)").appendTo(dialog.content); $rootPathField.appendTo(dialog.content); const excludedPathsMultifield = createMultifield(); - $('
').text("Excluded Paths (The list of paths excluded from processing. The specified path and all its children are excluded. The excluded path should not end with slash. Can be specified as a regex)").appendTo(dialog.content); + $('
').html("Excluded Paths (The list of paths excluded from processing. The specified path and all its children are excluded. The excluded path should not end with slash. Can be specified as a regex)").appendTo(dialog.content);
dialog.content.appendChild(excludedPathsMultifield);
- const $activatedContentCheckbox = $('
').text("Excluded links patterns (Links are excluded from processing if match any of the specified regex patterns)").appendTo(dialog.content); + $('
').html("Excluded links patterns (Links are excluded from processing if match any of the specified regex patterns)").appendTo(dialog.content); dialog.content.appendChild(filterMultifield); const $lastModifiedContentField = $(''); - $('
').text("Last Modified (The content modified before the specified date will be excluded. Tha date should has the ISO-like date-time format, such as '2011-12-03T10:15:30+01:00')").appendTo(dialog.content); + $('
').html("Last Modified (The content modified before the specified date will be excluded. Tha date should has the ISO-like date-time format, such as '2011-12-03T10:15:30+01:00')").appendTo(dialog.content); $lastModifiedContentField.appendTo(dialog.content); const excludedPropertiesMultifield = createMultifield(); - $('
').text("Excluded Properties (The list of properties excluded from processing. Each value can be specified as a regex)").appendTo(dialog.content); + $('
').html("Excluded Properties (The list of properties excluded from processing. Each value can be specified as a regex)").appendTo(dialog.content); dialog.content.appendChild(excludedPropertiesMultifield); const linksTypeSelect = new Coral.Select().set({ @@ -110,18 +110,18 @@ value: "EXTERNAL", disabled: false }); - $('
').text("Links type (The type of links in the report)").appendTo(dialog.content); + $('
').html("Links type (The type of links in the report)").appendTo(dialog.content);
dialog.content.appendChild(linksTypeSelect);
- const $excludeTagsCheckbox = $('
').text("Status codes (The list of status codes allowed for broken links in the report. Set a single negative value to allow all http error codes)").appendTo(dialog.content); + $('
').html("Status codes (The list of status codes allowed for broken links in the report. Set a single negative value to allow all http error codes)").appendTo(dialog.content); dialog.content.appendChild(statusCodesMultifield); const $threadsPerCoreField = $(''); - $('
').text("Threads per core (The number of threads created per each CPU core for validating links in parallel)").appendTo(dialog.content); + $('
').html("Threads per core (The number of threads created per each CPU core for validating links in parallel)").appendTo(dialog.content); $threadsPerCoreField.appendTo(dialog.content); $.ajax({