From a00123a37b5e49ea9238de89151c8c6eca071a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nejc=20Kova=C4=8D?= Date: Mon, 18 Jul 2022 10:50:41 +0200 Subject: [PATCH] Objava - pregled --- admin/survey/SurveyAdminSettings.php | 1 + public/css/admin_new.css | 33 +++++++- public/img/icons/lock_yellow.svg | 6 ++ .../pages/survey_objava/pregled.scss | 82 ++++++++++++++++++- 4 files changed, 119 insertions(+), 3 deletions(-) create mode 100644 public/img/icons/lock_yellow.svg diff --git a/admin/survey/SurveyAdminSettings.php b/admin/survey/SurveyAdminSettings.php index 5fd1ee2c6..c97d9b0f4 100644 --- a/admin/survey/SurveyAdminSettings.php +++ b/admin/survey/SurveyAdminSettings.php @@ -2797,6 +2797,7 @@ class SurveyAdminSettings { echo '
'; echo '
'; echo $lang['srv_publication_invitations']; + echo ''; echo '
'; echo $lang['srv_publication_invitations_text']; echo ''; diff --git a/public/css/admin_new.css b/public/css/admin_new.css index 3ad9e8245..eed51eb39 100644 --- a/public/css/admin_new.css +++ b/public/css/admin_new.css @@ -24596,11 +24596,20 @@ div#vabila div.more div.more_block div.more_title div.more_title_icon span.fa-1 bottom: 1px; right: 1px; } +div#vabila div.more div.more_block div.more_title .mail_yellow { + margin-left: 32px; +} div#vabila div.more div.more_block div.more_title a.help { color: inherit; text-decoration: none; margin-left: 5px; } +div#vabila div.more div.more_block:first-of-type .more_title { + color: #FFC700; +} +div#vabila div.more div.more_block:first-of-type span.faicon.empty { + color: #FFC700; +} div#general_popup div.popup_content.publish { max-width: 600px; @@ -24646,7 +24655,7 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more { display: none; } -@media screen and (max-width: 1300px) { +@media screen and (max-width: 1025px) { #vabila .copy_survey_url_holder .input_box { width: 300px; } @@ -24658,6 +24667,28 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more { } #vabila .button_holder #nice_url_holder { margin: 16px 0px !important; + flex-direction: row; + } +} +@media screen and (max-width: 850px) { + .page_vabila #vabila .button_holder #nice_url_holder { + flex-direction: row !important; + } + .page_vabila #vabila .button_holder #nice_url_holder .buttons { + margin: 0px !important; + } +} +@media screen and (max-width: 725px) { + h2 { + font-size: 20px !important; + } +} +@media screen and (max-width: 500px) { + .page_vabila #vabila .button_holder #nice_url_holder { + flex-direction: column !important; + } + .page_vabila #vabila .button_holder #nice_url_holder .buttons { + margin: 0px !important; } } .page_invitations .invitations_holder.half-half { diff --git a/public/img/icons/lock_yellow.svg b/public/img/icons/lock_yellow.svg new file mode 100644 index 000000000..c623e3512 --- /dev/null +++ b/public/img/icons/lock_yellow.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/resources/sass/admin_new/pages/survey_objava/pregled.scss b/resources/sass/admin_new/pages/survey_objava/pregled.scss index d48d8bcc4..b5c3d08fa 100644 --- a/resources/sass/admin_new/pages/survey_objava/pregled.scss +++ b/resources/sass/admin_new/pages/survey_objava/pregled.scss @@ -246,6 +246,10 @@ div#vabila { } } + .mail_yellow{ + margin-left: 32px; + } + a.help { color: inherit; text-decoration: none; @@ -255,6 +259,16 @@ div#vabila { } } + + div.more_block:first-of-type{ + .more_title{ + color: #FFC700; + } + + span.faicon.empty{ + color: #FFC700; + } + } } } @@ -324,7 +338,7 @@ div#general_popup { } -@media screen and (max-width: 1300px){ +@media screen and (max-width: 1025px){ #vabila{ @@ -346,6 +360,9 @@ div#general_popup { #nice_url_holder { margin: 16px 0px !important; + flex-direction: row; + + } @@ -355,7 +372,68 @@ div#general_popup { } + +} + +@media screen and (max-width: 850px) { + .page_vabila{ + + #vabila{ + + .button_holder{ + + #nice_url_holder { + + flex-direction: row !important; + + .buttons{ + margin: 0px !important; + } + + } + + + + } + + } + + } +} + +@media screen and (max-width: 725px) { + + h2 { + font-size: 20px !important ; + } +} + +@media screen and (max-width: 500px) { + .page_vabila{ + + #vabila{ + + .button_holder{ -} \ No newline at end of file + #nice_url_holder { + + flex-direction: column !important; + + .buttons{ + margin: 0px !important; + } + + } + + + + } + + } + + } + + +}