Anonymous
×
Create a new article
Write your page title here:
We currently have 7 articles on wiki.jedimud.net. Type your article name above or click on one of the titles below and start writing!



wiki.jedimud.net

MediaWiki:Common.css: Difference between revisions

 
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 {
.gallerybox .thumb img, .gallerybox .thumb .mw-file-element {
    border: none; /* Remove border if you want no border */
     border: 1px solid;  
}
 
/* If you want to keep the border but match parent's background */
.gallerybox .thumb {
    border: 1px solid ; /* Inherit from parent */
}
 
/* Alternatively, if you want to specify the parent's background color */
.gallerybox {
    background-color:#315c27; /* Replace with actual parent background color */
}
 
.gallerybox .thumb {
     border: 1px solid currentColor; /* Match the parent's text color if it's set, or use inherit */
}
}

Revision as of 01:15, 20 January 2025

/* CSS placed here will be applied to all skins */
/* Override border color to match parent background */
.gallerybox .thumb img, .gallerybox .thumb .mw-file-element {
    border: 1px solid; 
}