From c795052302064d118cfdf96c87664b6c7ebcb0e7 Mon Sep 17 00:00:00 2001 From: Avani Bhatt Date: Mon, 23 Jun 2025 21:05:03 +0100 Subject: [PATCH] Testing Edit this page along with select and report feature --- .hintrc | 20 +++ layouts/_default/baseof.html | 3 +- .../partials/select-report-issue-hover.html | 54 ++++++++ .../partials/select-report-issue-popup.html | 54 ++++++++ layouts/partials/toc.html | 16 ++- static/js/select-report-issue-hover.js | 125 ++++++++++++++++++ static/js/select-report-issue-popup.js | 112 ++++++++++++++++ 7 files changed, 380 insertions(+), 4 deletions(-) create mode 100644 .hintrc create mode 100644 layouts/partials/select-report-issue-hover.html create mode 100644 layouts/partials/select-report-issue-popup.html create mode 100644 static/js/select-report-issue-hover.js create mode 100644 static/js/select-report-issue-popup.js diff --git a/.hintrc b/.hintrc new file mode 100644 index 000000000..e30e55803 --- /dev/null +++ b/.hintrc @@ -0,0 +1,20 @@ +{ + "extends": [ + "development" + ], + "hints": { + "meta-viewport": "off", + "axe/text-alternatives": [ + "default", + { + "document-title": "off" + } + ], + "axe/language": [ + "default", + { + "html-has-lang": "off" + } + ] + } +} \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 6e828cd91..4264f4184 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -1,7 +1,7 @@ {{- partial "head.html" . -}} - +
{{- partial "header.html" . -}} {{- block "main" . }} @@ -9,6 +9,7 @@ {{- end }}
+