Changes

no edit summary
Line 1: Line 1:  
/* CSS placed here will affect users of the mobile site */
 
/* CSS placed here will affect users of the mobile site */
 +
 +
/* Ensure gallery thumbnails render properly across browsers */
 +
.gallerybox .thumb img {
 +
    display: block !important;        /* Prevent inline rendering quirks */
 +
    background: none !important;      /* Remove gray placeholder background */
 +
    object-fit: cover;                /* Fit image correctly in its box */
 +
    max-width: 100% !important;
 +
    max-height: 100% !important;
 +
}
 +
 +
/* Optional: add a subtle fallback background so empty images are visible */
 +
.gallerybox .thumb {
 +
    background-color: #f0f0f0;        /* Light gray instead of solid dark */
 +
}