[Redizajn 1KA] Popupi: Urejanje > Nastavitve > Obveščanje o izpolnjeni anketi - Lastna oblika e-mail sporočila

This commit is contained in:
tejagerjovic 2022-05-19 04:09:07 +02:00
parent 8385125dea
commit ffe31002b8
5 changed files with 12 additions and 2 deletions

View File

@ -414,7 +414,7 @@ class SurveyAdmin
echo '<div id="vprasanje" class="divPopUp"></div>'; echo '<div id="vprasanje" class="divPopUp"></div>';
// popup za urejanje vrednosti // popup za urejanje vrednosti
echo '<div id="vrednost_edit" class="divPopUp"></div>'; echo '<div id="vrednost_edit" class="divPopUp PopUpAuto"></div>';
// Generičen popup // Generičen popup

View File

@ -5596,6 +5596,9 @@ class SurveyAdminAjax {
$text = $row['text']; $text = $row['text'];
} }
echo '<h2><span class="faicon blue text_file empty"></span>'.$lang['srv_alert_custom'].'</h2>';
echo '<div class="popup_close"><a href="#" onClick="remove_editor(\'text\'); $(\'#fade\').fadeOut(\'slow\'); $(\'#vrednost_edit\').hide().html(\'\'); return false;">✕</a></div>';
echo '<form action="ajax.php?a=alert_custom_save" name="alert_custom" method="post">'; echo '<form action="ajax.php?a=alert_custom_save" name="alert_custom" method="post">';
echo '<input type="hidden" name="anketa" value="'.$this->anketa.'">'; echo '<input type="hidden" name="anketa" value="'.$this->anketa.'">';
echo '<input type="hidden" name="type" value="'.$type.'">'; echo '<input type="hidden" name="type" value="'.$type.'">';

View File

@ -392,7 +392,7 @@ class Hierarhija {
echo '</div>'; echo '</div>';
// popup za urejanje vrednosti // popup za urejanje vrednosti
echo '<div id="vrednost_edit" class="divPopUp">'; echo '<div id="vrednost_edit" class="divPopUp PopUpAuto">';
echo '</div>'; echo '</div>';
// fade pri fullscreen urejanje spremenljivke // fade pri fullscreen urejanje spremenljivke

View File

@ -7207,6 +7207,9 @@ a.help {
.divPopUp.PopUpNarrow { .divPopUp.PopUpNarrow {
width: 600px !important; width: 600px !important;
} }
.divPopUp.PopUpAuto {
width: fit-content !important;
}
.divPopUp_info { .divPopUp_info {
padding: 16px; padding: 16px;

View File

@ -292,6 +292,10 @@
&.PopUpNarrow { &.PopUpNarrow {
width: 600px !important; width: 600px !important;
} }
&.PopUpAuto {
width: fit-content !important;
}
} }
.divPopUp_info{ .divPopUp_info{