Docker server has responsiveness now

This commit is contained in:
2025-12-17 13:00:15 -05:00
parent 1a01d29f19
commit c11a1eed35
14 changed files with 2465 additions and 747 deletions

View File

@@ -27,14 +27,16 @@
.stat-card {
background: var(--color-bg-elevated);
border: 1px solid rgba(255,255,255,0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-lg);
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
transition:
transform 0.3s,
box-shadow 0.3s;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.stat-card:hover {
@@ -54,7 +56,6 @@
font-weight: 600;
}
/* --- Filtros mejorados --- */
.filters-section {
display: flex;
gap: 1.5rem;
@@ -62,9 +63,9 @@
padding: 1.5rem;
background: var(--color-bg-elevated);
border-radius: var(--radius-md);
border: 1px solid rgba(255,255,255,0.05);
border: 1px solid rgba(255, 255, 255, 0.05);
flex-wrap: wrap;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.filter-group {
@@ -85,7 +86,7 @@
.filter-select {
background: var(--color-bg-base);
border: 1px solid rgba(255,255,255,0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--color-text-primary);
padding: 0.7rem 1rem;
border-radius: 8px;
@@ -118,7 +119,7 @@
.view-btn {
background: var(--color-bg-base);
border: 1px solid rgba(255,255,255,0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--color-text-secondary);
padding: 0.7rem;
border-radius: 8px;
@@ -159,7 +160,9 @@
}
@keyframes spin {
to { transform: rotate(360deg); }
to {
transform: rotate(360deg);
}
}
.empty-state {
@@ -194,14 +197,14 @@
.list-item {
background: var(--color-bg-elevated-hover);
border: 1px solid rgba(255,255,255,0.08);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: var(--radius-md);
overflow: hidden;
transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
display: flex;
flex-direction: column;
position: relative;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.list-item:hover {
@@ -236,16 +239,15 @@
}
.list-grid.list-view .item-poster {
/* Cambiar el ancho y alto */
width: 120px; /* Antes: 100px */
height: 180px; /* Antes: 150px */
width: 120px;
height: 180px;
aspect-ratio: auto;
border-radius: 8px;
margin: 1rem;
}
.item-content {
padding: 1rem; /* Antes: 1.2rem */
padding: 1rem;
display: flex;
flex-direction: column;
flex-grow: 1;
@@ -262,7 +264,7 @@
}
.item-title {
font-size: 1rem; /* Antes: 1.1rem */
font-size: 1rem;
font-weight: 800;
margin-bottom: 0.5rem;
white-space: nowrap;
@@ -281,16 +283,16 @@
.item-meta {
display: flex;
gap: 0.3rem; /* Antes: 0.75rem. Espacio entre los pills */
margin-bottom: 0.5rem; /* Antes: 0.8rem */
gap: 0.3rem;
margin-bottom: 0.5rem;
flex-wrap: wrap;
/* Añadir: Asegura que si se envuelven, lo hagan con poco margen vertical */
line-height: 1.4;
}
.meta-pill {
font-size: 0.65rem; /* Antes: 0.7rem */
padding: 0.15rem 0.4rem; /* Antes: 0.25rem 0.6rem. Reduce el padding interno */
font-size: 0.65rem;
padding: 0.15rem 0.4rem;
border-radius: 999px;
font-weight: 700;
white-space: nowrap;
@@ -329,12 +331,12 @@
}
.progress-bar-container {
background: rgba(255,255,255,0.08);
background: rgba(255, 255, 255, 0.08);
border-radius: 999px;
height: 10px;
overflow: hidden;
margin-bottom: 0.5rem;
box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
.progress-bar {
@@ -364,7 +366,6 @@
border-radius: 4px;
}
/* --- Botón de edición flotante --- */
.edit-icon-btn {
position: absolute;
top: 1rem;
@@ -382,7 +383,10 @@
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s, transform 0.2s, background 0.2s;
transition:
opacity 0.3s,
transform 0.2s,
background 0.2s;
}
.list-item:hover .edit-icon-btn {
@@ -412,74 +416,92 @@
transform: none;
}
/* --- Modal de Edición Mejorado (Estilo Anilist + AMOLED) --- */
@media (max-width: 550px) {
/* Layout de lista (card view) */
.list-grid {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.list-grid.list-view .list-item {
flex-direction: column;
align-items: flex-start;
padding-right: 0;
}
.list-grid.list-view .item-poster {
width: 100%;
height: auto;
margin: 0;
border-radius: 0;
aspect-ratio: 16/9;
}
.list-grid.list-view .item-content {
flex-direction: column;
@media (max-width: 768px) {
.container {
padding: 1rem;
}
.list-grid.list-view .item-content > div:first-child {
flex-basis: auto;
}
.list-grid.list-view .edit-icon-btn {
position: absolute;
top: 1rem;
right: 1rem;
opacity: 1;
background: rgba(18, 18, 21, 0.8);
width: 100%;
}
/* Modal en móvil */
.modal-content {
margin: 0.5rem;
width: auto;
.header-section {
margin-top: 1rem;
margin-bottom: 1.5rem;
}
.modal-fields-grid {
.page-title {
font-size: 2rem;
text-align: center;
margin-bottom: 1.5rem;
}
.stats-row {
grid-template-columns: 1fr;
gap: 1rem;
padding-bottom: 0;
}
.form-group.notes-group,
.form-group.checkbox-group {
grid-column: auto;
.stat-card {
padding: 1rem;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.modal-actions {
flex-direction: column;
align-items: stretch;
}
.btn-danger {
margin-right: 0;
order: 3;
}
.btn-secondary {
.stat-value {
font-size: 1.8rem;
order: 2;
}
.btn-primary {
.stat-label {
font-size: 1rem;
order: 1;
}
}
.edit-btn-card {
display: none;
}
.filters-section {
flex-direction: column;
padding: 1rem;
gap: 1rem;
}
.item-poster-link {
z-index: 1;
}
.filter-group {
min-width: 100%;
}
.filter-select {
width: 100%;
padding: 0.8rem;
}
.view-toggle {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
}
.view-btn {
justify-content: center;
}
.list-grid {
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 1rem;
}
.item-title {
font-size: 0.9rem;
}
.item-meta {
gap: 0.2rem;
}
.meta-pill {
font-size: 0.6rem;
padding: 0.1rem 0.3rem;
}
.edit-icon-btn {
opacity: 1;
background: rgba(0, 0, 0, 0.6);
width: 35px;
height: 35px;
}
}