GDPR nastavitve -->seznam anket: box containers

This commit is contained in:
Nejc Kovač 2022-08-02 12:18:51 +02:00
parent 21b64b3cb7
commit b8cf445dd9
5 changed files with 119 additions and 10 deletions

View File

@ -62,12 +62,12 @@ class GDPR{
echo '<fieldset>';
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="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 '</div>';
@ -80,7 +80,7 @@ class GDPR{
echo '<div class= "num_box num_box2">';
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 '</div>';
@ -93,7 +93,7 @@ class GDPR{
echo '<div class= "num_box num_box3">';
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 '</div>';

View File

@ -369,9 +369,9 @@ class SurveyTheme {
}
//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">';
@ -423,7 +423,7 @@ class SurveyTheme {
//Gumbi
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">';
@ -593,7 +593,7 @@ class SurveyTheme {
//Gumbi
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
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
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
echo '<div class="button" onclick="te_change_profile(\''.$row['id'].'\', true, true); return false;" title="'.$lang['srv_te_theme_activate2'].'">';

View File

@ -10004,6 +10004,49 @@ textarea:focus {
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 {
margin: 8px 0;
padding: 8px 0;

View File

@ -8,3 +8,4 @@
@import "fieldset";
@import "dropdown";
@import "textarea";
@import "seznam_anket";

View 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 ;
}
}