49 lines
949 B
CSS
49 lines
949 B
CSS
/* ============================================================
|
|
CACHE INFO - Styles communs
|
|
============================================================ */
|
|
|
|
.cache-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 15px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 20px;
|
|
font-size: 0.85rem;
|
|
margin: 15px 0;
|
|
width: fit-content;
|
|
}
|
|
|
|
.cache-badge {
|
|
color: var(--accent-primary);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.cache-timestamp {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.btn-refresh {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.btn-refresh:hover {
|
|
background: var(--bg-primary);
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
/* Mobile */
|
|
@media (max-width: 768px) {
|
|
.cache-info {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
}
|