Admin mobile - popravki mojih anket, branchinga

This commit is contained in:
pero1203 2021-04-28 13:46:50 +02:00
parent 79b5d6434f
commit 51b58a4047
4 changed files with 222 additions and 14 deletions

View File

@ -28444,12 +28444,107 @@ a.addIfIcon {
} }
@media (max-width: 600px) { @media (max-width: 600px) {
table#surveyList_new td { #srv_footer {
display: flex;
flex-direction: column;
}
#srv_footer .footer_left {
margin-bottom: 10px;
}
#main #moje_ankete_edit {
padding: 20px !important;
}
#main #moje_ankete_edit #survey_list {
display: flex;
flex-direction: column;
}
#main #moje_ankete_edit #survey_list > div {
margin: 15px 0 20px 0;
}
#main #moje_ankete_edit #survey_list #anketa_new_float {
display: flex;
justify-content: center;
}
#main #moje_ankete_edit #survey_list #pagination {
margin-left: auto;
margin-right: auto;
transform: none;
display: none; display: none;
} }
table#surveyList_new td:nth-child(3), table#surveyList_new td:nth-child(6), table#surveyList_new td:nth-child(7) { #main #moje_ankete_edit #survey_list #pagination.bottom {
display: block;
}
#main #moje_ankete_edit #survey_list #sortButton,
#main #moje_ankete_edit #survey_list #filterButton,
#main #moje_ankete_edit #survey_list #folderSwitch {
display: none;
}
#main #moje_ankete_edit #survey_list #searchMySurveys {
padding: 0;
}
#main #moje_ankete_edit #survey_list #searchMySurveys form {
display: flex;
justify-content: center;
}
#main #moje_ankete_edit #survey_list #searchMySurveys form input[type=text] {
width: 100%;
padding: 5px 0 5px 7px;
}
#main #moje_ankete_edit #survey_list .div_sl_new {
padding: 20px 0;
}
#main #moje_ankete_edit #survey_list table#surveyList_new td {
display: none;
}
#main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(3), #main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(6), #main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(7) {
display: table-cell; display: table-cell;
} }
#branching {
width: 100%;
}
#branching li {
margin: 0 10px 0 20px !important;
}
#branching .spr_edit {
display: none !important;
}
#branching #bottom_icons_holder {
display: flex;
flex-direction: column;
}
#branching #bottom_icons_holder .forma_bottom {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: auto;
padding: 30px 10px 20px 20px;
}
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner {
display: flex;
flex-direction: row;
padding: 0 0 10px 0;
margin: 0;
}
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner a {
margin: 0 8px;
padding: 0;
}
#vprasanje_float_editing {
position: fixed;
width: 90%;
max-height: 90%;
overflow-y: auto;
overflow-x: hidden;
margin: 5% !important;
top: 0;
right: 0;
left: 0;
box-shadow: 0px 0px 100px 100px #333;
}
} }
/*# sourceMappingURL=admin.css.map */ /*# sourceMappingURL=admin.css.map */

View File

@ -1 +1,8 @@
#srv_footer{
display: flex;
flex-direction: column;
.footer_left{
margin-bottom: 10px;
}
}

View File

@ -1 +1,56 @@
#branching{
width: 100%;
li{
margin: 0 10px 0 20px !important;
}
.spr_edit{
display: none !important;
}
#bottom_icons_holder{
display: flex;
flex-direction: column;
.forma_bottom{
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: auto;
padding: 30px 10px 20px 20px;
.forma_bottom_inner{
display: flex;
flex-direction: row;
padding: 0 0 10px 0;
margin: 0;
a{
margin: 0 8px;
padding: 0;
}
}
}
}
}
#vprasanje_float_editing{
position: fixed;
width: 90%;
max-height: 90%;
overflow-y: auto;
overflow-x: hidden;
margin: 5% !important;
top: 0;
right: 0;
left: 0;
box-shadow: 0px 0px 100px 100px #333;
}

View File

@ -1,7 +1,59 @@
#main #moje_ankete_edit{
padding: 20px !important;
// Tabela z mojimi anketami #survey_list{
table#surveyList_new{ display: flex;
flex-direction: column;
> div{
margin: 15px 0 20px 0;
}
#anketa_new_float{
display: flex;
justify-content: center;
}
#pagination{
margin-left: auto;
margin-right: auto;
transform: none;
display: none;
&.bottom{
display: block;
}
}
#sortButton,
#filterButton,
#folderSwitch{
display: none;
}
#searchMySurveys{
padding: 0;
form{
display: flex;
justify-content: center;
input[type="text"]{
width: 100%;
padding: 5px 0 5px 7px;
}
}
}
.div_sl_new {
padding: 20px 0;
}
// Tabela z mojimi anketami
table#surveyList_new{
td{ td{
display: none; display: none;
@ -12,8 +64,7 @@ table#surveyList_new{
display: table-cell; display: table-cell;
} }
} }
}
}
} }