added manual matching on books
This commit is contained in:
@@ -935,78 +935,4 @@ body.stop-scrolling {
|
||||
background: rgba(255, 255, 255, 0.15);
|
||||
border-color: var(--brand-color);
|
||||
box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
|
||||
}
|
||||
|
||||
/* Reutilización para los resultados de búsqueda */
|
||||
.match-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
padding: 10px;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.match-item:hover {
|
||||
background: rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
|
||||
.match-item img {
|
||||
width: 40px;
|
||||
height: 56px;
|
||||
object-fit: cover;
|
||||
border-radius: 4px;
|
||||
background: #222;
|
||||
}
|
||||
|
||||
.match-title {
|
||||
font-weight: 600;
|
||||
font-size: 0.95rem;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.match-meta {
|
||||
font-size: 0.8rem;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* Estado activo (seleccionado actualmente si quisieras marcarlo) */
|
||||
.match-item.active {
|
||||
border: 1px solid var(--brand-color);
|
||||
background: rgba(139, 92, 246, 0.1);
|
||||
}
|
||||
|
||||
.btn-view-source {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 8px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 6px;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
transition: all 0.2s ease;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
text-decoration: none;
|
||||
margin-left: auto; /* Empuja el botón a la derecha */
|
||||
}
|
||||
|
||||
.btn-view-source:hover {
|
||||
background: var(--brand-color);
|
||||
color: white;
|
||||
border-color: var(--brand-color-light);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
/* Ajuste para que el texto no choque con el botón */
|
||||
.match-info {
|
||||
flex: 1;
|
||||
margin-right: 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
Reference in New Issue
Block a user