My wiki (where I make all the changes): Roblox BEAR Wiki
1. How do I customize the Special:Gallery of new files box?
For the Special:Gallery of new files, I want to customize this section of it to look like the mock-up below. Although, I don't know what code to put into my wiki's Common.css to make this change.
Mock-up:
2. How do I customize current/selected image in image light-box?
For the image light-box, I am struggling with finding out what code is required for me to customize the border and color of the current/selected image that I am on (the right side of the screenshot). I did try adding ".wds-is-current" after "li" to the coding below, but it doesn't work:
.LightboxModal .LightboxCarousel .LightboxCarouselContainer li {
border: 1.5px solid var(--highlight2);
border-radius: 5px;
background-color: var(--main2);
}
3. What coding do I need to add to make thumbnail images have a border-radius, but excludes other images, such as galleries, sliders, and infoboxes?
Lastly for thumbnail images, I want them to have a border-radius of 5px. I ended up finding the code below that would make this happen:
.page img, .thumb .image .thumbimage {
border-radius: 5px;
}
The only problem is this code makes it so that every every image has a border, which ended up making images, such as gallery images, have their border not lining up with the border-radius, looking like this:
I did make an attempt to find an additional line of coding that excludes images like galleries, infoboxes, and sliders from this change, adding the line "not:(.wikia-gallery-border-small, .fandom-slider, pi-image, pi-image img)", after ".thumbimage", but it would not add the border-radius to the thumbnail images.