Page 1 of 1

Wiki layout broken - by update?

PostPosted: Wed Nov 03, 2010 2:13 pm
by diafero
The wiki layout is partially broken, as can be seen on the Recently changed sites or the history page.

Re: Wiki layout broken - by update?

PostPosted: Thu Nov 04, 2010 4:25 am
by tachzusamm
I don't see what you mean, diafero. The layout appears as it should - or as I would expect it.

Re: Wiki layout broken - by update?

PostPosted: Thu Nov 04, 2010 10:45 am
by D'Lanor
Unless diafero means that the layout for those two pages should be identical, which it is not.

Re: Wiki layout broken - by update?

PostPosted: Thu Nov 04, 2010 5:33 pm
by Paradox
The wiki layout has always had some random bugs, probably because it was hacked together in a few hours trying to re-use as much of the phpBB theme code as possible :P

I've thought a few times about trying to update/fix it, but then I end up wanting to redo the entire site theme... and at the moment I definitely don't have time for that! Once you're logged in on the wiki, you should be able to change to a different theme in your user preferences (if the theme is broken for you, or if you (like me) are obsessive and can't stand things being out of place :P)

Re: Wiki layout broken - by update?

PostPosted: Mon Nov 08, 2010 1:27 pm
by diafero
I mean "broken" as in "using obviously undesired background colours": The recent changes site has a bright background around the box containing namespace selection and the option to invert the selection. In the revision history, the bright background is even more annoying as the white text on it is unreadable:
wiki.jpg
wiki.jpg (67.28 KiB) Viewed 2840 times

Re: Wiki layout broken - by update?

PostPosted: Wed Nov 10, 2010 11:19 am
by tachzusamm
Ah, now I see what you mean.
Indeed, a white text in front of a bright background is a bit funny. :D

So you would prefer it looking like this?
gowiki.png
gowiki.png (29.31 KiB) Viewed 2813 times


Well, that can be changed in the main.css file at #pagehistory li.selected.
Current version:
Code: Select all
#pagehistory li.selected {
    background-color:#F9F9F9;
    border:1px dashed #AAAAAA;
}


Version of my example (black background):
Code: Select all
#pagehistory li.selected {
    background-color:#000000;
    border:1px dashed #AAAAAA;
}


CSS code for the Recent Changes page can be found in main.css as well:
Code: Select all
table {
    background-color:white;  /* maybe change to black */
    color:black;            /* maybe change to white */
    font-size:100%;
}


Unfortunatelly I am not able to change this online.

Re: Wiki layout broken - by update?

PostPosted: Wed Nov 10, 2010 1:10 pm
by diafero
Yes, that screenshot looks like it used to be ;-) (I still don't like so bright text on so dark background, but it's way better than bright text on bright background :D )