Browse Source

[backend] Responsive : adaptations modal ajout/édition commande

dev
Guillaume 4 years ago
parent
commit
2c1789ba7d
2 changed files with 53 additions and 0 deletions
  1. +24
    -0
      backend/web/css/screen.css
  2. +29
    -0
      backend/web/sass/_responsive.scss

+ 24
- 0
backend/web/css/screen.css View File

padding: 8px 15px; padding: 8px 15px;
margin: 10px; margin: 10px;
} }
/* line 50, ../sass/_responsive.scss */
.distribution-index .modal-form-order .modal-container {
width: 100%;
}
/* line 53, ../sass/_responsive.scss */
.distribution-index .modal-form-order .modal-container .modal-body table {
margin-bottom: 100px;
}
/* line 58, ../sass/_responsive.scss */
.distribution-index .modal-form-order .modal-container .modal-footer {
border-top-color: #f4f4f4;
position: fixed;
bottom: 0;
right: 0;
z-index: 99999;
background-color: white;
width: 100%;
text-align: center;
border-top: solid 1px #e0e0e0;
}
/* line 70, ../sass/_responsive.scss */
.distribution-index .modal-form-order .modal-container .modal-footer .actions-form button {
float: none;
}
} }

+ 29
- 0
backend/web/sass/_responsive.scss View File

} }
} }
} }

.modal-form-order {
.modal-container {
width: 100% ;
.modal-body {
table {
margin-bottom: 100px ;
}

}
.modal-footer {
border-top-color: #f4f4f4;
position: fixed;
bottom: 0;
right: 0;
z-index: 99999;
background-color: white;
width: 100%;
text-align: center;
border-top: solid 1px #e0e0e0 ;

.actions-form {
button {
float: none ;
}
}
}
}
}
} }
} }

Loading…
Cancel
Save