Compare commits

...

5 Commits
main ... Hp

Author SHA1 Message Date
Alexis Burnaz 4f82b29f18 minor changes 2025-12-19 18:27:17 +01:00
Alexis Burnaz a929c0770c Ajout .gitignore et retrait node_modules/logs du suivi 2025-12-19 18:11:52 +01:00
Alexis Burnaz 4cc8167ad8 Hp quasiment terminé, version tres avancé, aucune erreur dans la console 2025-12-19 18:10:03 +01:00
Alexis Burnaz 5a0ff43300 Hp quasiment terminé, version tres avancé, aucune erreur dans la console 2025-12-19 18:08:26 +01:00
Alexis Burnaz 013cd0eb8d travail 2025-12-19 13:37:51 +01:00
225 changed files with 4887 additions and 3326 deletions

5
ecole/.env Normal file
View File

@ -0,0 +1,5 @@
DB_URL=http://127.0.0.1:8091/
DB_ADMIN=admin@axa.fr
DB_PASSWORD=DTadmin123TT
NODE_ENV=developpement
PORT=8082

30
ecole/.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Logs
logs/
*.log
# Environment variables
.env
.env.local
.env.*.local
# OS files
.DS_Store
Thumbs.db
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Build outputs
dist/
build/

File diff suppressed because it is too large Load Diff

View File

@ -9,9 +9,7 @@
"test": "jest"
},
"pkg": {
"assets": [
"public/**"
]
"assets": ["public/**"]
},
"keywords": [],
"author": "cyril.ducaffy@axa.fr",

View File

@ -102,13 +102,6 @@ hr.form {
font-size: smaller;
}
.helper-text.error {
font-weight: bold;
text-align: center;
margin-top: 20px;
white-space: pre-line;
}
.mrg {
padding: 0 5% !important;
}
@ -452,63 +445,3 @@ a.grille-garanties:hover{
display: none;
}
}
/* Overlay loader */
#loader-overlay {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: linear-gradient(
rgba(10, 20, 60, 0.2),
rgba(0, 0, 0, 0.4)
);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
font-family: 'Roboto', sans-serif;
opacity: 0;
backdrop-filter: blur(0px);
pointer-events: none;
transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}
#loader-overlay.active {
opacity: 1;
backdrop-filter: blur(3px);
pointer-events: all;
}
#loader-overlay.hidden {
display: none;
}
.loader-spin-wrap {
opacity: 0;
transform: translateY(10px);
transition: opacity 0.5s ease, transform 0.5s ease;
transition-delay: 0.5s;
}
#loader-overlay.active .loader-spin-wrap {
opacity: 1;
transform: translateY(0);
}
/* Spinner circulaire */
.loader-spin {
width: 50px;
aspect-ratio: 1;
border-radius: 50%;
mask:1;
background:
radial-gradient(farthest-side,darkblue 94%,transparent) top/8px 8px no-repeat,
conic-gradient(transparent 30%,darkblue);
-webkit-mask: radial-gradient(farthest-side,transparent calc(100% - 8px),#000 0);
animation: l13 1s infinite linear;
}
@keyframes l13 {
100% { transform: rotate(1turn); }
}

View File

@ -145,10 +145,31 @@ td.nc-value {
}
#divToggleSearch {
width: 300px;
grid-column: 2;
grid-row: 3;
justify-self: center;
white-space: nowrap;
}
#toggleSearch {
white-space: nowrap;
width: auto;
min-width: fit-content;
padding: 0 24px;
color: white !important;
background-color: darkblue !important;
border: none !important;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(16, 0, 75, 0.2), 0 4px 8px rgba(16, 0, 75, 0.1);
transition: background-color 0.3s;
}
#toggleSearch:hover {
background-color: #26a69a !important;
}
#toggleSearch:active {
background-color: gray !important;
}
#divExtractAll {
@ -206,3 +227,6 @@ td.nc-value {
#checkRegionAdmin label {
display: inline-block;
}
#historiqueParcours tr.shown > td { background: #fffdf5; }
.parcours-details { font-size: 0.95rem; }

Some files were not shown because too many files have changed in this diff Show More