Files
xigmanas-bastille-extension/gui/css/bastille-header-refresh.css
2026-02-15 21:05:28 +01:00

58 lines
1.3 KiB
CSS

/* bastille_manager.css
Estilo NATIVO (Minimalista)
*/
#refresh-controls {
/* Fondo transparente y sin bordes para integrarse con el tema */
background: transparent;
border: none;
padding: 10px 0;
margin-bottom: 5px;
/* Alineación a la derecha */
display: flex;
justify-content: flex-end;
align-items: center;
gap: 15px;
/* Fuente estándar del sistema */
font-size: 13px;
color: inherit;
}
#refresh-status {
/* Color de texto por defecto del tema (negro/gris) */
color: inherit;
margin-right: 5px;
/* Coloca el texto a la izquierda de los botones */
order: -1;
}
/* Pequeño spinner azul discreto solo cuando actualiza */
#refresh-status.updating .refresh-spinner {
display: inline-block;
width: 10px;
height: 10px;
border: 2px solid #ccc;
border-top-color: #007bff;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-right: 5px;
}
/* Animación del spinner */
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Asegurar que los iconos de la tabla estén centrados verticalmente */
.area_data_selection tbody td img {
vertical-align: middle;
}
/* Centrado perfecto para los checkboxes */
.lcelc {
text-align: center;
vertical-align: middle;
}