diff --git a/backend/data/musiques/SONNERIE_P.mp3 b/backend/data/musiques/SONNERIE_P.mp3 deleted file mode 100644 index c0f483e..0000000 Binary files a/backend/data/musiques/SONNERIE_P.mp3 and /dev/null differ diff --git a/frontend/app/templates/base.html b/frontend/app/templates/base.html index 7d4e81f..1dd8b19 100644 --- a/frontend/app/templates/base.html +++ b/frontend/app/templates/base.html @@ -187,6 +187,7 @@ label { } input, +select, button { border-radius: 12px; border: 1px solid var(--line); @@ -194,13 +195,23 @@ button { max-width: 100%; } -input { +input, +select { display: block; width: 100%; background: #fff; padding: 0.65rem 0.75rem; } +select { + cursor: pointer; + appearance: none; + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23665e57' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); + background-repeat: no-repeat; + background-position: right 0.75rem center; + padding-right: 2rem; +} + input[type="file"] { min-width: 0; } @@ -348,6 +359,24 @@ td { margin-bottom: 0.75rem; } +.audio-select-row { + display: flex; + gap: 0.5rem; + align-items: stretch; +} + +.audio-select-row select { + flex: 1; + min-width: 0; +} + +.audio-select-row .btn-preview { + flex-shrink: 0; + padding: 0.65rem 0.75rem; + font-size: 1rem; + line-height: 1; +} + .audio-player-card { border: 1px solid var(--line); border-radius: 12px; diff --git a/frontend/app/templates/dashboard.html b/frontend/app/templates/dashboard.html index 15a0fdd..d0766a4 100644 --- a/frontend/app/templates/dashboard.html +++ b/frontend/app/templates/dashboard.html @@ -4,7 +4,6 @@

Tableau de bord

-

Backend: {{ backend_url }} | Utilisateur: {{ username }}

@@ -30,12 +29,20 @@