From fd552daa215b8867e2868588a6a36b0d86e0a7f9 Mon Sep 17 00:00:00 2001 From: Dmitry Batkovich Date: Wed, 4 May 2016 13:18:04 +0300 Subject: [PATCH] export html action: location + name merged --- .../intellij/codeInspection/ex/HTMLComposerImpl.java | 12 ++++-------- .../lang-impl/resources/inspectionReport/styles.css | 4 ++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/platform/analysis-impl/src/com/intellij/codeInspection/ex/HTMLComposerImpl.java b/platform/analysis-impl/src/com/intellij/codeInspection/ex/HTMLComposerImpl.java index b5f18c246efc..f44bc78dae2b 100644 --- a/platform/analysis-impl/src/com/intellij/codeInspection/ex/HTMLComposerImpl.java +++ b/platform/analysis-impl/src/com/intellij/codeInspection/ex/HTMLComposerImpl.java @@ -92,17 +92,13 @@ public abstract class HTMLComposerImpl extends HTMLComposer { if (refEntity instanceof RefElement) { RefElement refElement = (RefElement)refEntity; - appendHeading(buf, InspectionsBundle.message("inspection.offline.view.tool.display.name.title")); - buf.append(BR); - appendAfterHeaderIndention(buf); - - appendShortName(buf, refElement); - buf.append(BR).append(BR); - appendHeading(buf, InspectionsBundle.message("inspection.export.results.capitalized.location")); + buf.append("
"); + appendShortName(buf, refElement); buf.append(BR); - appendAfterHeaderIndention(buf); + buf.append("in "); appendLocation(buf, refElement); + buf.append("
"); buf.append(BR).append(BR); } } diff --git a/platform/lang-impl/resources/inspectionReport/styles.css b/platform/lang-impl/resources/inspectionReport/styles.css index 4da0d083e3a8..41cc32481542 100644 --- a/platform/lang-impl/resources/inspectionReport/styles.css +++ b/platform/lang-impl/resources/inspectionReport/styles.css @@ -91,4 +91,8 @@ li input:checked + ol > li { li input:checked + ol > li:last-child { margin: 0 0 1px; +} + +div.location { + margin-left: 40px; } \ No newline at end of file -- 2.32.0