diff --git a/admin/survey/classes/surveyAnalysis/class.SurveyAnalysisArchive.php b/admin/survey/classes/surveyAnalysis/class.SurveyAnalysisArchive.php
index 9bf9286f5..00bd82a6e 100644
--- a/admin/survey/classes/surveyAnalysis/class.SurveyAnalysisArchive.php
+++ b/admin/survey/classes/surveyAnalysis/class.SurveyAnalysisArchive.php
@@ -144,6 +144,9 @@ class SurveyAnalysisArchive {
echo '
';
echo ' ';
+ //PlaĨljiva ikona
+ //echo '';
+
if ($defaultFields['email'])
echo '';
if ($defaultFields['edit'])
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index 46ddfbbe6..3989fb34d 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -6005,6 +6005,10 @@ span.faicon.dots::before {
font-weight: 600;
}
+span.faicon.open_icon::before {
+ content: "\f08e";
+}
+
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
diff --git a/resources/sass/admin_new/basic/icons/standard.scss b/resources/sass/admin_new/basic/icons/standard.scss
index c76e21a2f..887b94857 100644
--- a/resources/sass/admin_new/basic/icons/standard.scss
+++ b/resources/sass/admin_new/basic/icons/standard.scss
@@ -644,10 +644,14 @@ span.faicon.file-preview::before{
content: "\f865";
}
-
// 3 pikice
span.faicon.dots::before{
content: "\f141";
font-size: 16px;
font-weight: 600;
+}
+
+// Open (new tab)
+span.faicon.open_icon::before{
+ content: "\f08e";
}
\ No newline at end of file
|