';
@@ -844,15 +822,20 @@ class SurveyTelephone {
// Nastavitve
echo '
';
- echo '
';
- echo '
';
- echo '
';
+ echo '
';
}
}
}
diff --git a/lang/1.php b/lang/1.php
index d4db56d4c..ed5f0d5b1 100644
--- a/lang/1.php
+++ b/lang/1.php
@@ -6418,7 +6418,7 @@ $lang = array (
'srv_telephone_call_comment' => 'Morebitni komentar anketarja na to številko:',
'srv_telephone_settings_access_list' => 'Seznam anketarjev in urednikov z dostopom:',
'srv_telephone_settings_access_list_link' => ' (podrobno lahko urednike urejate
tukaj)',
- 'srv_telephone_no_respondents' => 'V bazi nimate respondentov z telefonskimi številkami.',
+ 'srv_telephone_no_respondents' => 'V bazi nimate respondentov s telefonskimi številkami.',
'srv_telephone_dashboard_legend' => 'Sumarni pregled telefonske ankete:',
'srv_telephone_dashboard_legend_finished' => 'Sumarni pregled zaključenih anket:',
'srv_telephone_dashboard_legend_anketar' => 'Pregled stanja klicev po anketarjih:',
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index 6ccf5d12f..93cf4d38b 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -19253,6 +19253,72 @@ dl.arch_email dd {
text-align: center;
}
+div.page_telephone div.phone_settings_top div#inv_top_navi {
+ display: flex;
+ flex-direction: row;
+ margin-bottom: 32px;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav {
+ display: flex;
+ flex-direction: row;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step {
+ display: flex;
+ flex-direction: row;
+ vertical-align: middle;
+ cursor: pointer;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu {
+ color: #C4C4C4;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu div.label:after {
+ content: "";
+ display: inline-block;
+ height: 0.5em;
+ vertical-align: bottom;
+ width: 32px;
+ margin-right: -100%;
+ margin-left: 3px;
+ border-top: 1px solid #C4C4C4;
+ cursor: default;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu:not(:first-of-type) {
+ margin-left: 3px;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu:last-of-type {
+ margin-right: 64px;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu:last-of-type div.label::after {
+ display: none;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu div.square {
+ width: 20px;
+ height: 20px;
+ border: 1px solid #E5E5E5;
+ box-sizing: border-box;
+ border-radius: 2px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin-right: 8px;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu.active {
+ color: #1E88E5;
+ font-weight: 600;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu.active div.square {
+ border-color: #1E88E5;
+ background-color: #1E88E5;
+ color: #FFFFFF;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step a {
+ color: inherit;
+ text-decoration: none;
+}
+div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.settings {
+ margin-right: 32px;
+}
+
div.subpage_predvidenicas table,
div.subpage_cas table {
width: 100%;
diff --git a/resources/sass/admin_new/pages/survey_edit/survey_edit.scss b/resources/sass/admin_new/pages/survey_edit/survey_edit.scss
index 07093d9d2..89182ca5c 100644
--- a/resources/sass/admin_new/pages/survey_edit/survey_edit.scss
+++ b/resources/sass/admin_new/pages/survey_edit/survey_edit.scss
@@ -21,3 +21,5 @@
// Popupi
@import "popups/popups";
+
+@import "telefonska_anketa";
\ No newline at end of file
diff --git a/resources/sass/admin_new/pages/survey_edit/telefonska_anketa.scss b/resources/sass/admin_new/pages/survey_edit/telefonska_anketa.scss
new file mode 100644
index 000000000..f9ef60075
--- /dev/null
+++ b/resources/sass/admin_new/pages/survey_edit/telefonska_anketa.scss
@@ -0,0 +1,100 @@
+div.page_telephone {
+
+ //Nastavitve zgoraj
+ div.phone_settings_top {
+
+ div#inv_top_navi {
+
+ display: flex;
+ flex-direction: row;
+
+ margin-bottom: 32px;
+
+ div.phn_step_nav {
+ display: flex;
+ flex-direction: row;
+
+ div.phn_step {
+
+ display: flex;
+ flex-direction: row;
+
+ vertical-align: middle;
+
+ cursor: pointer;
+
+ &.menu {
+
+ color: $dark-gray;
+
+ div.label {
+
+ &:after {
+ content: "";
+ display: inline-block;
+ height: 0.5em;
+ vertical-align: bottom;
+ width: 32px;
+ margin-right: -100%;
+ margin-left: 3px;
+ border-top: 1px solid $dark-gray;
+
+ cursor: default;
+ }
+ }
+
+ &:not(:first-of-type) {
+ margin-left: 3px;
+ }
+
+ &:last-of-type {
+ div.label {
+ &::after {
+ display: none;
+ }
+ }
+
+ margin-right: 64px;
+ }
+
+ div.square {
+ width: 20px;
+ height: 20px;
+
+ border: 1px solid $gray;
+ box-sizing: border-box;
+ border-radius: 2px;
+
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ margin-right: 8px;
+ }
+
+ &.active {
+ color: $blue;
+ font-weight: $semi-bold;
+
+ div.square {
+ border-color: $blue;
+ background-color: $blue;
+ color: $white;
+ }
+
+ }
+ }
+
+ a {
+ color: inherit;
+ text-decoration: none;
+ }
+
+ &.settings {
+ margin-right: 32px;
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file