Add details_vue.php, update statistiques_controleur.php, update modele.php, update tables_vue.php files and delete notes.txt file

This commit is contained in:
2024-04-11 21:57:09 +02:00
parent 05b71d7108
commit 4ee48b93bc
8 changed files with 303 additions and 91 deletions

View File

@@ -27,7 +27,7 @@ header {
padding-top: 1%;
}
.header_logo > a > img {
.header_logo>a>img {
width: 30%;
}
@@ -55,6 +55,13 @@ main {
padding-left: 1em;
}
p {
margin: 0.5em 0;
padding: 0.5em;
background-color: white;
border: 1px solid gray;
}
footer {
display: flex;
justify-content: space-around;
@@ -76,12 +83,20 @@ footer {
text-align: center;
}
.panneau > div {
.panneau>div {
margin-right: 2%;
}
.panneau_details {
width: 80%;
display: flex;
justify-content: center;
width: 100%;
overflow-y: auto;
text-align: center;
}
.panneau_details>div {
margin-right: 2%;
}
.table_resultat {
@@ -91,23 +106,23 @@ footer {
text-align: center;
}
.table_resultat > thead > tr {
.table_resultat>thead>tr {
border: 1px solid gray;
background-color: lightgrey;
}
.table_resultat > tbody > tr:hover {
.table_resultat>tbody>tr:hover {
cursor: pointer;
background-color: gray !important;
color: white;
}
.table_resultat > tbody > tr:nth-child(2n) {
.table_resultat>tbody>tr:nth-child(2n) {
border: 1px solid gray;
background-color: lightgrey;
}
.table_resultat > tbody > tr:nth-child(2n + 1) {
.table_resultat>tbody>tr:nth-child(2n + 1) {
border: 1px solid gray;
background-color: white;
}
@@ -117,18 +132,18 @@ footer {
border-radius: 2em;
background-color: white;
margin-left: 5%;
margin-bottom: 2%;
margin-bottom: 20%;
padding: 10px 10px 10px 10px;
width: 90%;
}
.bloc_commandes > input[type="submit"] {
.bloc_commandes>input[type="submit"] {
width: 15%;
font-size: 1.2em;
margin-left: 4%;
}
.bloc_commandes > select {
.bloc_commandes>select {
width: 30%;
font-size: 1.2em;
margin-left: 1%;
@@ -136,7 +151,7 @@ footer {
text-align: center;
}
.bloc_commandes > input[type="submit"]:hover,
.bloc_commandes > select:hover {
.bloc_commandes>input[type="submit"]:hover,
.bloc_commandes>select:hover {
cursor: pointer;
}
}