From a7be11f375ba6728e39b2d5e57e167083cdd75f9 Mon Sep 17 00:00:00 2001 From: tejagerjovic Date: Fri, 6 May 2022 00:15:13 +0200 Subject: [PATCH] [Redizajn 1KA] Popupi: Analize - Filtri > Zoom --- admin/survey/SurveyAdmin.php | 2 +- admin/survey/classes/class.SurveyInpect.php | 54 ++++++++++--------- lang/1.php | 2 +- lang/2.php | 2 +- public/css/admin_new.css | 5 ++ .../components/popup/page_specific.scss | 17 +++++- 6 files changed, 54 insertions(+), 28 deletions(-) diff --git a/admin/survey/SurveyAdmin.php b/admin/survey/SurveyAdmin.php index 71d9b805d..3ac874d1b 100644 --- a/admin/survey/SurveyAdmin.php +++ b/admin/survey/SurveyAdmin.php @@ -463,7 +463,7 @@ class SurveyAdmin echo '
'; # skrit div za izbor profilov nastavitev - echo '
'; + echo '
'; # skrit div za izbor profilov zank echo '
'; diff --git a/admin/survey/classes/class.SurveyInpect.php b/admin/survey/classes/class.SurveyInpect.php index ffc86a6b2..7416a2117 100644 --- a/admin/survey/classes/class.SurveyInpect.php +++ b/admin/survey/classes/class.SurveyInpect.php @@ -552,40 +552,46 @@ class SurveyInspect { # Nastavitve za Inspect - echo '
'; + echo '

'; echo $lang['srv_inspect_setting_link']; - echo '

'; + echo '

'; + echo '
'; + echo '

'.$lang['srv_inspect_setting_enabled'].'

'; - echo '
'; + echo '
'; - echo ' '; - - echo ' enableInspect == false) ? ' checked="checked" ' : '').' autocomplete="off">'; + echo '
'; + echo ' enableInspect == false) ? ' checked="checked" ' : '').' autocomplete="off">'; echo ' '; - + echo '
'; + echo '
'; echo ' enableInspect == true) ? ' checked="checked" ' : '') . ' autocomplete="off">'; echo ' '; - - echo '
'; - - - echo '
'; - - echo ' '; - - echo ' inspect_goto == SI_GOTO_ANALIZE ? ' checked="checked"' : '').' onchange="inspectRadioChange();return false;" autocomplete="off">'; - echo ' '; - - echo ' inspect_goto == SI_GOTO_VPOGLED ? ' checked="checked"' : '').' onchange="inspectRadioChange();return false;" autocomplete="off">'; - echo ' '; - - echo ' inspect_goto == SI_GOTO_PODATKI ? ' checked="checked"' : '').' onchange="inspectRadioChange();return false;" autocomplete="off">'; - echo ' '; - + echo '
'; + + echo '
'; echo '
'; + echo '
'; + echo '

'.$lang['srv_inspect_goto_note'].'

'; + + echo '
'; + echo ' inspect_goto == SI_GOTO_ANALIZE ? ' checked="checked"' : '').' onchange="inspectRadioChange();return false;" autocomplete="off">'; + echo ' '; + echo '
'; + echo '
'; + echo ' inspect_goto == SI_GOTO_VPOGLED ? ' checked="checked"' : '').' onchange="inspectRadioChange();return false;" autocomplete="off">'; + echo ' '; + echo '
'; + echo '
'; + echo ' inspect_goto == SI_GOTO_PODATKI ? ' checked="checked"' : '').' onchange="inspectRadioChange();return false;" autocomplete="off">'; + echo ' '; + echo '
'; + + echo '
'; + echo '
inspect_goto != SI_GOTO_PODATKI ? ' class="displayNone"' : '').'>'; echo '
'; echo $lang['srv_inspect_setting_show_variables']; diff --git a/lang/1.php b/lang/1.php index 1b810e4d7..a3842dcf9 100644 --- a/lang/1.php +++ b/lang/1.php @@ -5467,7 +5467,7 @@ $lang = array ( "srv_replace" => 'Zamenjaj', "srv_inspect_setting" => 'Zoom', "srv_inspect_setting_enabled" => '"Zoom" je omogočen:', - "srv_inspect_setting_link" => 'Preberite več o funkcionalnosti "Zoom" tukaj', + "srv_inspect_setting_link" => 'Preberite več o funkcionalnosti "Zoom" tukaj.', "srv_inspect_setting_show_variables" => 'Pri pregledovanju prikaži dodatne spremenljivke:', "srv_inspect_goto_note" => '"Zoom" kaže na:', "srv_inspect_goto_0" => 'Obstoječe analize', diff --git a/lang/2.php b/lang/2.php index 60ac11470..24b94215d 100644 --- a/lang/2.php +++ b/lang/2.php @@ -5427,7 +5427,7 @@ $lang = array ( "srv_replace" => 'Replace', "srv_inspect_setting" => 'Zoom', "srv_inspect_setting_enabled" => '"Zoom" is enabled:', - "srv_inspect_setting_link" => 'For more information on "Zoom" functionality click here', + "srv_inspect_setting_link" => 'For more information on "Zoom" functionality click here.', "srv_inspect_setting_show_variables" => 'Always show the following variables:', "srv_inspect_goto_note" => '"Zoom" points to the:', "srv_inspect_goto_0" => 'Existing analyses', diff --git a/public/css/admin_new.css b/public/css/admin_new.css index 4d7c5af07..000b61b2f 100644 --- a/public/css/admin_new.css +++ b/public/css/admin_new.css @@ -8356,6 +8356,11 @@ fieldset.statusProfileFieldset .setting_holder.disabled .setting_item label { margin-right: 4px; } +div#inspect_div .setting_holder .horizontal { + display: flex; + flex-direction: row; +} + /* Header scss - top line, menu... */ diff --git a/resources/sass/admin_new/components/popup/page_specific.scss b/resources/sass/admin_new/components/popup/page_specific.scss index 0bf3ae3a3..d77ba1aab 100644 --- a/resources/sass/admin_new/components/popup/page_specific.scss +++ b/resources/sass/admin_new/components/popup/page_specific.scss @@ -317,4 +317,19 @@ fieldset.statusProfileFieldset { #rec_spremenljivka_naslov { margin-right: 4px; -} \ No newline at end of file +} + + +//////ANALIZA////// +//Zoom + +div#inspect_div { + + .setting_holder { + + .horizontal { + display: flex; + flex-direction: row; + } + } +}