GDPR nastavitve -->seznam anket: box containers
This commit is contained in:
parent
21b64b3cb7
commit
b8cf445dd9
@ -62,12 +62,12 @@ class GDPR{
|
|||||||
echo '<fieldset>';
|
echo '<fieldset>';
|
||||||
echo '<legend>'.$lang['srv_anketalist'].'</legend>';
|
echo '<legend>'.$lang['srv_anketalist'].'</legend>';
|
||||||
|
|
||||||
echo '<div class="box-container" style="display:flex; justify-content: space-between; ">';
|
echo '<div class="box-container">';
|
||||||
|
|
||||||
echo '<div class= "num_box num_box1">';
|
echo '<div class= "num_box num_box1">';
|
||||||
|
|
||||||
echo '<div class="box_flex">';
|
echo '<div class="box_flex">';
|
||||||
echo '<input type="checkbox">';
|
echo '<input type="checkbox" name="GDPR ankete checkbox" id="gdpr_ankete_check" checked="checked">';
|
||||||
echo '<h2> GDPR ANKETE</h2>';
|
echo '<h2> GDPR ANKETE</h2>';
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ class GDPR{
|
|||||||
echo '<div class= "num_box num_box2">';
|
echo '<div class= "num_box num_box2">';
|
||||||
|
|
||||||
echo '<div class="box_flex">';
|
echo '<div class="box_flex">';
|
||||||
echo '<input type="checkbox">';
|
echo '<input type="checkbox" name="Potencialno GDPR ankete" id="potenc_gdpr_ankete_check" checked="checked">';
|
||||||
echo '<h2> POTENCIALNO GDPR ANKETE</h2>';
|
echo '<h2> POTENCIALNO GDPR ANKETE</h2>';
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
@ -93,7 +93,7 @@ class GDPR{
|
|||||||
echo '<div class= "num_box num_box3">';
|
echo '<div class= "num_box num_box3">';
|
||||||
|
|
||||||
echo '<div class="box_flex">';
|
echo '<div class="box_flex">';
|
||||||
echo '<input type="checkbox">';
|
echo '<input type="checkbox" name="ne-gdpr ankete" id="ne-gdpr_ankete" checked="checked">';
|
||||||
echo '<h2> NE-GDPR ANKETE</h2>';
|
echo '<h2> NE-GDPR ANKETE</h2>';
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
|
@ -369,9 +369,9 @@ class SurveyTheme {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Gumbi
|
//Gumbi
|
||||||
echo '<div class="options">';
|
echo '<div class="options option1">';
|
||||||
|
|
||||||
echo '<img src="\public\img\icons\dots.svg">';
|
echo '<button onclick="show_settings()"> <img src="\public\img\icons\dots.svg"> </button>';
|
||||||
|
|
||||||
echo '<div class= "buttons-window active">';
|
echo '<div class= "buttons-window active">';
|
||||||
|
|
||||||
@ -423,7 +423,7 @@ class SurveyTheme {
|
|||||||
//Gumbi
|
//Gumbi
|
||||||
echo '<div class="options">';
|
echo '<div class="options">';
|
||||||
|
|
||||||
echo '<img src="\public\img\icons\dots.svg">';
|
echo '<button onclick="show_settings()"> <img src="\public\img\icons\dots.svg"> </button>';
|
||||||
|
|
||||||
echo '<div class= "buttons-window active">';
|
echo '<div class= "buttons-window active">';
|
||||||
|
|
||||||
@ -593,7 +593,7 @@ class SurveyTheme {
|
|||||||
//Gumbi
|
//Gumbi
|
||||||
echo '<div class="options">';
|
echo '<div class="options">';
|
||||||
|
|
||||||
echo '<img src="\public\img\icons\dots.svg">';
|
echo '<button onclick="show_settings()"> <img src="\public\img\icons\dots.svg"> </button>';
|
||||||
|
|
||||||
//Aktiviraj
|
//Aktiviraj
|
||||||
echo '<div class="button" onclick="te_change_profile(\''.$row['id'].'\', true); return false;" title="'.$lang['srv_te_theme_activate2'].'">';
|
echo '<div class="button" onclick="te_change_profile(\''.$row['id'].'\', true); return false;" title="'.$lang['srv_te_theme_activate2'].'">';
|
||||||
@ -647,7 +647,7 @@ class SurveyTheme {
|
|||||||
//Gumbi
|
//Gumbi
|
||||||
echo '<div class="options">';
|
echo '<div class="options">';
|
||||||
|
|
||||||
echo '<img src="\public\img\icons\dots.svg">';
|
echo '<button onclick="show_settings()"> <img src="\public\img\icons\dots.svg"> </button>';
|
||||||
|
|
||||||
//Aktiviraj
|
//Aktiviraj
|
||||||
echo '<div class="button" onclick="te_change_profile(\''.$row['id'].'\', true, true); return false;" title="'.$lang['srv_te_theme_activate2'].'">';
|
echo '<div class="button" onclick="te_change_profile(\''.$row['id'].'\', true, true); return false;" title="'.$lang['srv_te_theme_activate2'].'">';
|
||||||
|
@ -10004,6 +10004,49 @@ textarea:focus {
|
|||||||
border-color: #1E88E5;
|
border-color: #1E88E5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#gdpr_nastavitve fieldset {
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
.box-container .num_box {
|
||||||
|
border: #1E88E5 solid 1px;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
.box-container .num_box .box_flex {
|
||||||
|
padding: 16px 16px 0px 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.box-container .num_box .box_flex h2 {
|
||||||
|
font-size: 16px !important;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.box-container .num_box .box_flex input {
|
||||||
|
position: unset;
|
||||||
|
height: 18px;
|
||||||
|
width: 18px;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
.box-container .num_box .box_text {
|
||||||
|
padding: 0px 16px 16px 16px;
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.box-container .num_box .box_text span {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #808080;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
.box-container .num_box2 {
|
||||||
|
margin: 0px 32px;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
margin: 8px 0;
|
margin: 8px 0;
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
|
@ -8,3 +8,4 @@
|
|||||||
@import "fieldset";
|
@import "fieldset";
|
||||||
@import "dropdown";
|
@import "dropdown";
|
||||||
@import "textarea";
|
@import "textarea";
|
||||||
|
@import "seznam_anket";
|
65
resources/sass/admin_new/components/form/seznam_anket.scss
Normal file
65
resources/sass/admin_new/components/form/seznam_anket.scss
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#gdpr_nastavitve{
|
||||||
|
fieldset{
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.box-container{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
margin-top: 16px;
|
||||||
|
|
||||||
|
.num_box{
|
||||||
|
border: #1E88E5 solid 1px;
|
||||||
|
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
.box_flex{
|
||||||
|
padding: 16px 16px 0px 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
h2{
|
||||||
|
font-size: 16px !important;
|
||||||
|
font-weight: 600;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
|
||||||
|
position: unset;
|
||||||
|
|
||||||
|
height: 18px;
|
||||||
|
width: 18px;
|
||||||
|
|
||||||
|
margin-right: 8px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.box_text{
|
||||||
|
padding: 0px 16px 16px 16px;
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 20px;
|
||||||
|
|
||||||
|
span{
|
||||||
|
font-size: 16px;
|
||||||
|
color: #808080;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.num_box2{
|
||||||
|
margin: 0px 32px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user