Analiza --> statistike: popravljen bug pri gumbih

This commit is contained in:
Nejc Kovač 2022-08-16 11:07:54 +02:00
parent 05672045d7
commit c18b3557b1
3 changed files with 19 additions and 3 deletions

View File

@ -50,7 +50,8 @@ class SurveyAnalysisHelper {
// Samo zvezdica (sums, grafi, freq...) // Samo zvezdica (sums, grafi, freq...)
if($type < 5) if($type < 5)
echo '<a href="#" title="'.($insert == 0 ? $lang['srv_custom_report_inserted_title'] : $lang['srv_custom_report_insert_title']).'" onClick="addCustomReportElement(\''.$type.'\', \''.$sub_type.'\', \''.$spr1.'\', \''.$spr2.'\', 0); return false;"><span id="'.$id.'" class="faicon pointer '.($insert == 0 ? ' star_on' : ' star_off').'"></span></a>'; echo '<a href="#" title="'.($insert == 0 ? $lang['srv_custom_report_inserted_title'] : $lang['srv_custom_report_insert_title']).'" onClick="addCustomReportElement(\''.$type.'\', \''.$sub_type.'\', \''.$spr1.'\', \''.$spr2.'\', 0); return false;"><span id="'.$id.'" class="faicon pointer '.($insert == 0 ? ' star_on' : ' star_off').'"></span> <div class= "icon_text star_icon"> Vključi v poročilo po meri </div></a>';
// Zvezdica s textom // Zvezdica s textom
else{ else{
echo '<div class="custom_report_include">'; echo '<div class="custom_report_include">';

View File

@ -11148,6 +11148,18 @@ div#gdrp_requests_unresolved {
margin-bottom: 32px; margin-bottom: 32px;
} }
.head_msg {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
}
.head_msg h2 {
margin-bottom: 0px;
margin-left: 8px;
padding-bottom: 0px;
}
div.setting_holder.red label { div.setting_holder.red label {
color: red; color: red;
} }
@ -29537,6 +29549,9 @@ iframe#ifmcontentstoprint {
.analysis_icons_holder .icon_box > a .sum_frekv { .analysis_icons_holder .icon_box > a .sum_frekv {
margin-left: 8px; margin-left: 8px;
} }
.analysis_icons_holder .icon_box > a .star_icon {
margin-left: 6px;
}
.analysis_icons_holder .icon_box > a:last-of-type { .analysis_icons_holder .icon_box > a:last-of-type {
margin-right: 0; margin-right: 0;
} }