prtksxna / persistent-toc

A gadget to add persistent table of contents on Wikipeida articles
MIT License
11 stars 4 forks source link

Wrong positioning in "Timeless" skin #26

Closed tguiot closed 4 years ago

tguiot commented 4 years ago

pretty nice gadget !

small problem for my wiki : we're using the timeless skin, and the block for the floating TOC is a bit too high. the text "Contents" is partly hidden behind the wiki header.

I suppose I could load the ptoc.css content in my mediawiki:common.css and simply change the div position top to some value.

tguiot commented 4 years ago

fyi I did as I thought : I pasted the ptoc.css into my mediawiki:Common.css and changed

.floatTOC {
    ...
    top: 0;
    ...

to

.floatTOC {
    ...
    top: 10pt;
    ...

which made my floating TOC in the right position.

prtksxna commented 4 years ago

Hey @tguiot, thanks for trying out the gadget and reporting issues.