[Redizajn 1KA] - Objava -> Pregled - v4

This commit is contained in:
tejagerjovic 2022-03-24 23:22:15 +01:00
parent ac917a4bd9
commit 8ce70e680a
5 changed files with 35 additions and 18 deletions

View File

@ -6771,7 +6771,7 @@ class SurveyAdminAjax {
echo '<h2><span class="faicon fa-qrcode"></span>'.$lang['srv_anketa_href_friends'].'</h2>'; echo '<h2><span class="faicon fa-qrcode"></span>'.$lang['srv_anketa_href_friends'].'</h2>';
echo '<div class="popup_content publish">'; echo '<div class="popup_content publish qr">';
echo '<img src="'.$site_url.'admin/survey/'.$img.'">'; echo '<img src="'.$site_url.'admin/survey/'.$img.'">';
echo '</div>'; echo '</div>';
@ -7169,7 +7169,7 @@ class SurveyAdminAjax {
echo '<div class="button_holder">'; echo '<div class="button_holder">';
if ($name == 'settings' || $name == 'QR') { if ($name == 'settings' || $name == 'QR') {
echo '<button class="medium blue" onclick="popupClose(); return false;">'.$lang['srv_zapri'].'</button>'; echo '<button class="medium blue" id="'.$name.'" onclick="popupClose(); return false;">'.$lang['srv_zapri'].'</button>';
} }
else { else {
echo '<button class="medium white-blue" onclick="popupClose(); return false;">'.$lang['srv_zapri'].'</button>'; echo '<button class="medium white-blue" onclick="popupClose(); return false;">'.$lang['srv_zapri'].'</button>';

View File

@ -2569,7 +2569,7 @@ class SurveyAdminSettings {
$this->niceUrlSettings(); $this->niceUrlSettings();
// Več načinov deljenja ankete // Več načinov deljenja ankete
echo '<div class="title"><div class="title_icon"><span class="faicon edit_square empty"></span></div><h2>'.$lang['srv_publication_survey_more'].'</h2></div>'; echo '<div class="title"><div class="title_icon"><span class="faicon share-arrow"></span></div><h2>'.$lang['srv_publication_survey_more'].'</h2></div>';
echo '<div class="more">'; echo '<div class="more">';

View File

@ -6625,6 +6625,10 @@ span.faicon.arhiv_mail::before {
content: "\f14d"; content: "\f14d";
} }
span.faicon.share-arrow::before {
content: "\f14d";
}
/* /*
To change this license header, choose License Headers in Project Properties. To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates To change this template file, choose Tools | Templates
@ -11195,17 +11199,21 @@ div#vabila div.more div.more_block div.more_title a.help {
margin-left: 5px; margin-left: 5px;
} }
div.popup_content.publish { div#general_popup div.popup_content.publish {
max-width: 600px; max-width: 600px;
} }
div.popup_content.publish textarea { div#general_popup div.popup_content.publish textarea {
width: 568px; width: 568px;
padding: 8px; padding: 8px;
height: auto; height: auto;
} }
div.popup_content.publish textarea.iframe { div#general_popup div.popup_content.publish textarea.iframe {
height: 155px; height: 155px;
} }
div#general_popup div.popup_content.publish.qr {
display: flex;
justify-content: center;
}
.dashboard_top_settings { .dashboard_top_settings {
display: flex; display: flex;

View File

@ -130,3 +130,6 @@ span.faicon.arhiv_mail::before{
font-weight: 400; font-weight: 400;
content: "\f14d"; content: "\f14d";
} }
span.faicon.share-arrow::before{
content: "\f14d";
}

View File

@ -300,18 +300,24 @@ div#vabila {
// Več načinov deljenja - popup // Več načinov deljenja - popup
div.popup_content { div#general_popup {
&.publish { div.popup_content {
max-width: 600px; &.publish {
max-width: 600px;
textarea { textarea {
width: 568px; width: 568px;
padding: 8px; padding: 8px;
height: auto; height: auto;
&.iframe { &.iframe {
height: 155px; height: 155px;
}
}
&.qr {
display: flex;
justify-content: center;
} }
} }
} }
} }