MediaWiki talk:Common.css

The UESPWiki – Your source for The Elder Scrolls since 1995
Jump to: navigation, search

Bread Crumbs and Categories[edit]

Why not making the margin between bread crumbs and text equal to one line? It would separate better the text from navigation. I think we discussed this some time ago and we agreed on that, didn't we? The same would be good for the Category box at the bottom. Also the two boxes should be the same size. --DrPhoton 03:51, 16 November 2006 (EST)

Update this to allow for images on the right-hand side below the box to not affect the rest of the page[edit]

Look here: UESPWiki:Community Portal#Certain pages are displaying oddly. Jak Atackka 08:57, 26 December 2011 (UTC)

table.citation edit request[edit]

I'd like to edit Template:Note to output a div instead of a table. Keeping it highlighted when targeted will need a CSS change, though.

From

/* For use by Template: Note */
table.citation: target, tr.citation: target td, td.citation: target {
    background-color: #EEEEFF;
}

To

/* For use by Template: Note */
.citation: target {
    background-color: #EEEEFF;
}

This change would put the highlighting on any element with class="citation", and be faster for browsers. I'd avoid a combined div.citation selector, because this highlighting might be useful on other elements such as <li> in the future. Rigel Kent (talk) 11:03, 8 May 2018 (UTC)

Edit: Oops, looks like Template:Highlightable Entry needs the td override.

To

/* For use by Template: Note */
.citation: target, .citation: target td {
    background-color: #EEEEFF;
}

Rigel Kent (talk) 11:21, 8 May 2018 (UTC)

Done. Robin Hood  (talk) 17:20, 8 May 2018 (UTC)
Here's a full list of templates that use the class if you wanted to check them out. I glanced at the template code as I was verifying search results, and nothing looked problematic, but I haven't looked into it any deeper than that.
Robin Hood  (talk) 17:31, 8 May 2018 (UTC)