update frontend
This commit is contained in:
parent
57580e418e
commit
5ec6ce1c09
|
|
@ -1,45 +1,82 @@
|
||||||
.app-root{ min-height:100vh; display:flex; flex-direction:column; }
|
.app-root{ min-height:100vh; display:flex; flex-direction:column; }
|
||||||
|
|
||||||
/* allow full page scroll */
|
|
||||||
.main-shell{ flex: 1 0 auto; display:block; padding:0; }
|
.main-shell{ flex: 1 0 auto; display:block; padding:0; }
|
||||||
|
.map-shell{ position:relative; width:100%; height:auto; overflow:visible; border:none; background:transparent; }
|
||||||
|
|
||||||
/* DO NOT clip MapView (it contains map + below-stage) */
|
/* Bouton Contacts flottant en bas à droite */
|
||||||
.map-shell{
|
.contacts-float-btn {
|
||||||
position:relative;
|
|
||||||
width:100%;
|
|
||||||
height:auto;
|
|
||||||
overflow:visible;
|
|
||||||
border:none;
|
|
||||||
background:transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Barre en bas transparente */
|
|
||||||
.bottom-bar {
|
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 0;
|
bottom: 16px;
|
||||||
left: 0;
|
right: 16px;
|
||||||
right: 0;
|
padding: 8px 12px;
|
||||||
height: 50px;
|
background: rgba(30, 41, 59, 0.8);
|
||||||
background: transparent; /* fond complètement supprimé */
|
border-radius: 999px;
|
||||||
backdrop-filter: blur(20px); /* effet verre fort */
|
color: #e5e7eb;
|
||||||
display: flex;
|
font-size: 13px;
|
||||||
justify-content: space-between;
|
font-weight: 600;
|
||||||
align-items: center;
|
|
||||||
padding: 0 16px;
|
|
||||||
z-index: 50;
|
|
||||||
transition: transform 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom-left, .bottom-right {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
overflow-x: auto;
|
z-index: 51;
|
||||||
white-space: nowrap;
|
border: none;
|
||||||
max-width: 45%;
|
cursor: pointer;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-chat {
|
.contact-icon { font-size: 16px; }
|
||||||
|
|
||||||
|
/* Liste des contacts (dropdown) */
|
||||||
|
.contacts-dropdown {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 70px;
|
||||||
|
right: 16px;
|
||||||
|
background: rgba(30, 41, 59, 0.95);
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
z-index: 52;
|
||||||
|
box-shadow: 0 10px 20px rgba(0,0,0,0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
color: #e5e7eb;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 6px 10px;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-item:hover {
|
||||||
|
background: rgba(56,189,248,0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-avatar {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: #38bdf8;
|
||||||
|
color: white;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bulles de chats actifs flottantes à côté du bouton */
|
||||||
|
.active-chats-bubbles {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 16px;
|
||||||
|
right: 140px; /* décalage pour être à côté du bouton Contacts */
|
||||||
|
display: flex;
|
||||||
|
gap: 6px;
|
||||||
|
z-index: 51;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-bubble {
|
||||||
padding: 4px 10px;
|
padding: 4px 10px;
|
||||||
background: rgba(30, 41, 59, 0.8);
|
background: rgba(30, 41, 59, 0.8);
|
||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
|
|
@ -49,7 +86,8 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
position: relative;
|
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-avatar {
|
.chat-avatar {
|
||||||
|
|
@ -65,13 +103,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-name {
|
.chat-name {
|
||||||
max-width: 120px;
|
max-width: 100px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-remove {
|
.bubble-remove {
|
||||||
background: red;
|
background: red;
|
||||||
border: none;
|
border: none;
|
||||||
color: white;
|
color: white;
|
||||||
|
|
@ -82,24 +120,5 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-contact {
|
/* Espace pour les bulles */
|
||||||
padding: 4px 10px;
|
.below-stage { padding-bottom: 70px; }
|
||||||
background: rgba(30, 41, 59, 0.8);
|
|
||||||
border-radius: 999px;
|
|
||||||
color: #e5e7eb;
|
|
||||||
font-size: 13px;
|
|
||||||
font-weight: 600;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 6px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-icon { font-size: 16px; }
|
|
||||||
.contact-text { font-weight: 700; }
|
|
||||||
.contact-online { font-size: 11px; opacity: 0.8; }
|
|
||||||
|
|
||||||
/* Espace pour la barre */
|
|
||||||
.below-stage {
|
|
||||||
padding-bottom: 60px;
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue