fix
This commit is contained in:
parent
020ba6526a
commit
c5af5483ba
@ -4027,7 +4027,6 @@ body.miniplayer-active #fab-container {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* NUEVO: Contenedores para alinear mensajes y avatares */
|
||||
.message-wrapper {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
@ -4042,10 +4041,9 @@ body.miniplayer-active #fab-container {
|
||||
|
||||
.user-wrapper {
|
||||
align-self: flex-end;
|
||||
flex-direction: row-reverse; /* Mensaje a la izquierda del (inexistente) avatar */
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
/* NUEVO: Estilo del avatar del asistente */
|
||||
.avatar {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
@ -4064,7 +4062,6 @@ body.miniplayer-active #fab-container {
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
/* MEJORADO: Estilos de las burbujas de mensaje */
|
||||
.message {
|
||||
padding: 0.8rem 1.2rem;
|
||||
border-radius: var(--border-radius-md);
|
||||
@ -4089,7 +4086,6 @@ body.miniplayer-active #fab-container {
|
||||
border-bottom-left-radius: 4px; /* Cola de la burbuja */
|
||||
}
|
||||
|
||||
/* MEJORADO: Estilo de las acciones contextuales */
|
||||
.chat-item-actions {
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
@ -4154,7 +4150,6 @@ body.miniplayer-active #fab-container {
|
||||
50% { opacity: 1; transform: scale(1); }
|
||||
}
|
||||
|
||||
/* MEJORADO: Formulario de entrada */
|
||||
#chat-input-form {
|
||||
display: flex;
|
||||
padding: 0.8rem;
|
||||
|
@ -297,7 +297,7 @@ function handleMainViewClick(e) {
|
||||
if (actionBtn.classList.contains('info-btn')) showItemDetails(Number(id), type);
|
||||
else if (actionBtn.classList.contains('favorites-btn')) toggleFavorite(Number(id), type);
|
||||
else if (actionBtn.classList.contains('play-btn')) addStreamToList(title, type, actionBtn);
|
||||
else if (actionBtn.classList.contains('download-btn')) downloadM3U(title, type, actionBtn);
|
||||
else if (actionBtn.classList.contains('download-btn')) downloadM3U([{ title, type }], actionBtn);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user