From e363dcda6240b0a1d02a721610b3441c5d82caf3 Mon Sep 17 00:00:00 2001 From: Terrtia Date: Tue, 25 Apr 2023 13:42:51 +0200 Subject: [PATCH] chg: [correlation] blur image by default --- .../correlation/show_correlation.html | 62 ++++++++++++++++--- 1 file changed, 55 insertions(+), 7 deletions(-) diff --git a/var/www/templates/correlation/show_correlation.html b/var/www/templates/correlation/show_correlation.html index 746ffdf7..b8a9dd79 100644 --- a/var/www/templates/correlation/show_correlation.html +++ b/var/www/templates/correlation/show_correlation.html @@ -65,6 +65,14 @@ color: #000000; } + .pixelated { + image-rendering: pixelated; + } + + .blured { + filter: blur(5px); + } + .graph_panel { padding: unset; } @@ -116,13 +124,36 @@
Graph +
+
+
+
+ +
+
+ +
+
+ +
+
+
+
+
+ {% if dict_object["object_type"] != "" %} {% with obj_type=dict_object["object_type"], obj_id=dict_object["correlation_id"], obj_subtype=dict_object["metadata"]["type_id"],obj_lvl=1%} - {% include 'import_export/block_add_user_object_to_export.html' %} - {% endwith %} + {% include 'import_export/block_add_user_object_to_export.html' %} + {% endwith %} {% endif %} - - + + @@ -279,6 +310,7 @@