No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Override border color to match parent background */ | /* Override border color to match parent background */ | ||
.gallerybox .thumb | /* For the container (assuming it's .thumb or .gallerybox) */ | ||
border: none; | .gallerybox, .thumb { | ||
background-color: transparent; /* or match to parent's background */ | |||
border: none; /* Remove border if you don't want it */ | |||
} | } | ||
/* | /* Alternatively, if you want to keep the border but change the background */ | ||
.gallerybox .thumb | .gallerybox, .thumb { | ||
/* | background-color: inherit; /* Inherit from parent */ | ||
border: 1px solid #315c27; | border: 1px solid #315c27; | ||
} | } | ||
Revision as of 01:22, 20 January 2025
/* CSS placed here will be applied to all skins */
/* Override border color to match parent background */
/* For the container (assuming it's .thumb or .gallerybox) */
.gallerybox, .thumb {
background-color: transparent; /* or match to parent's background */
border: none; /* Remove border if you don't want it */
}
/* Alternatively, if you want to keep the border but change the background */
.gallerybox, .thumb {
background-color: inherit; /* Inherit from parent */
border: 1px solid #315c27;
}
